fix
This commit is contained in:
parent
a6eaf30579
commit
433ab9ceea
1 changed files with 1 additions and 1 deletions
|
|
@ -69,7 +69,7 @@ class Source {
|
|||
: 'mangayomi-js-"${json['lang'] ?? ""}"."${json['name'] ?? ""}"'))
|
||||
.hashCode;
|
||||
isFullData = json['isFullData'] ?? false;
|
||||
itemType = json['itemType'] ?? ItemType.manga;
|
||||
itemType = ItemType.values[json['itemType'] ?? 0];
|
||||
isNsfw = json['isNsfw'] ?? false;
|
||||
lang = json['lang'] ?? "";
|
||||
name = json['name'] ?? "";
|
||||
|
|
|
|||
Loading…
Reference in a new issue