fix: NepNep search

This commit is contained in:
kodjomoustapha
2023-11-21 15:18:35 +01:00
parent 7389aa719d
commit 1870451fea
3 changed files with 3 additions and 3 deletions

View File

@@ -35,7 +35,7 @@ class NepNep extends MProvider {
final resSort = sortMapList(json.decode(directory), "lt", 1);
final datas = json.decode(resSort) as List;
final queryRes = datas.where((e) {
String name = getMapValue(e, 's');
String name = getMapValue(json.encode(e), 's');
return name.toLowerCase().contains(query.toLowerCase());
}).toList();

View File

@@ -1,7 +1,7 @@
import '../../../model/source.dart';
import '../../../utils/utils.dart';
const nepnepVersion = "0.0.3";
const nepnepVersion = "0.0.35";
const nepnepSourceCodeUrl =
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/nepnep/nepnep-v$nepnepVersion.dart";
const defaultDateFormat = "yyyy-MM-dd HH:mm:ss";