Fix hasEntryByTitle

This commit is contained in:
Matthieu Gautier 2023-06-21 14:45:18 +02:00
parent df631a4679
commit 09c0e0155e

View File

@ -164,7 +164,7 @@ METHOD(jobject, getEntryByTitle__I, jint index) {
}
METHOD(jboolean, hasEntryByTitle, jstring title) {
return TO_JNI(THIS->hasEntryByPath(TO_C(title)));
return TO_JNI(THIS->hasEntryByTitle(TO_C(title)));
}
METHOD(jobject, getEntryByClusterOrder, jint index) {