fix: NepNep search
This commit is contained in:
parent
3ffcbda726
commit
a05e437583
3 changed files with 3 additions and 3 deletions
File diff suppressed because one or more lines are too long
|
|
@ -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();
|
||||
|
||||
|
|
@ -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";
|
||||
|
|
|
|||
Loading…
Reference in a new issue