Fix typo getTagStr in the wrapper

This commit is contained in:
Matthieu Gautier 2020-02-10 17:25:31 +01:00
parent bd74ebed1e
commit b53f531f2b
1 changed files with 1 additions and 1 deletions

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);