Skip to content

Commit 09c0e01

Browse files
committed
Fix hasEntryByTitle
1 parent df631a4 commit 09c0e01

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/src/main/cpp/libzim/archive.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ METHOD(jobject, getEntryByTitle__I, jint index) {
164164
}
165165

166166
METHOD(jboolean, hasEntryByTitle, jstring title) {
167-
return TO_JNI(THIS->hasEntryByPath(TO_C(title)));
167+
return TO_JNI(THIS->hasEntryByTitle(TO_C(title)));
168168
}
169169

170170
METHOD(jobject, getEntryByClusterOrder, jint index) {

0 commit comments

Comments
 (0)