mirror of
https://github.com/revanced/revanced-manager
synced 2024-05-14 13:56:57 +02:00
chore: Merge branch dev
to main
(#1366)
This commit is contained in:
commit
f4994a36a3
@ -12,7 +12,15 @@ class Patch {
|
||||
required this.options,
|
||||
});
|
||||
|
||||
factory Patch.fromJson(Map<String, dynamic> json) => _$PatchFromJson(json);
|
||||
factory Patch.fromJson(Map<String, dynamic> json) {
|
||||
// See: https://github.com/ReVanced/revanced-manager/issues/1364#issuecomment-1760414618
|
||||
if (json['options'] == null) {
|
||||
json['options'] = [];
|
||||
}
|
||||
|
||||
return _$PatchFromJson(json);
|
||||
}
|
||||
|
||||
final String name;
|
||||
final String? description;
|
||||
final bool excluded;
|
||||
|
@ -4,7 +4,7 @@ homepage: https://github.com/revanced/revanced-manager
|
||||
|
||||
publish_to: 'none'
|
||||
|
||||
version: 1.12.0+101200000
|
||||
version: 1.12.1+101200100
|
||||
|
||||
environment:
|
||||
sdk: '>=3.0.0 <4.0.0'
|
||||
|
Loading…
Reference in New Issue
Block a user