mirror of
https://github.com/kodjodevf/mangayomi-extensions.git
synced 2026-02-14 10:51:17 +00:00
fix: NepNep search
This commit is contained in:
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 resSort = sortMapList(json.decode(directory), "lt", 1);
|
||||||
final datas = json.decode(resSort) as List;
|
final datas = json.decode(resSort) as List;
|
||||||
final queryRes = datas.where((e) {
|
final queryRes = datas.where((e) {
|
||||||
String name = getMapValue(e, 's');
|
String name = getMapValue(json.encode(e), 's');
|
||||||
return name.toLowerCase().contains(query.toLowerCase());
|
return name.toLowerCase().contains(query.toLowerCase());
|
||||||
}).toList();
|
}).toList();
|
||||||
|
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
import '../../../model/source.dart';
|
import '../../../model/source.dart';
|
||||||
import '../../../utils/utils.dart';
|
import '../../../utils/utils.dart';
|
||||||
|
|
||||||
const nepnepVersion = "0.0.3";
|
const nepnepVersion = "0.0.35";
|
||||||
const nepnepSourceCodeUrl =
|
const nepnepSourceCodeUrl =
|
||||||
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/nepnep/nepnep-v$nepnepVersion.dart";
|
"https://raw.githubusercontent.com/kodjodevf/mangayomi-extensions/main/manga/multisrc/nepnep/nepnep-v$nepnepVersion.dart";
|
||||||
const defaultDateFormat = "yyyy-MM-dd HH:mm:ss";
|
const defaultDateFormat = "yyyy-MM-dd HH:mm:ss";
|
||||||
|
|||||||
Reference in New Issue
Block a user