Fix typo getTagStr in the wrapper

This commit is contained in:
Matthieu Gautier 2020-02-10 17:25:31 +01:00
parent 0cf2cedfdf
commit dc8be0398f

View File

@ -68,7 +68,7 @@ GETTER(jstring, getFaviconUrl)
GETTER(jstring, getFaviconMimeType)
METHOD(jstring, Book, getTagStr, jstring tagName) try {
auto cRet = Book->getTagStr(jni2c(tagName, env));
auto cRet = BOOK->getTagStr(jni2c(tagName, env));
return c2jni(cRet, env);
} catch(...) {
return c2jni<std::string>("", env);