mirror of
https://github.com/kodjodevf/mangayomi.git
synced 2026-04-21 03:32:06 +00:00
fix settings double int error
This commit is contained in:
parent
5e153660ab
commit
76897a3040
1 changed files with 1 additions and 1 deletions
|
|
@ -338,7 +338,7 @@ class Settings {
|
|||
.map((e) => FilterScanlator.fromJson(e))
|
||||
.toList();
|
||||
}
|
||||
flexColorSchemeBlendLevel = json['flexColorSchemeBlendLevel'];
|
||||
flexColorSchemeBlendLevel = json['flexColorSchemeBlendLevel'] is double ? json['flexColorSchemeBlendLevel'] : (json['flexColorSchemeBlendLevel'] as int).toDouble();
|
||||
flexSchemeColorIndex = json['flexSchemeColorIndex'];
|
||||
id = json['id'];
|
||||
incognitoMode = json['incognitoMode'];
|
||||
|
|
|
|||
Loading…
Reference in a new issue