mirror of
https://github.com/revanced/revanced-manager
synced 2024-05-14 13:56:57 +02:00
fix: microg patches ame is not titlecase
This commit is contained in:
parent
a580375078
commit
c7d9ca961a
@ -26,7 +26,12 @@ class Patch {
|
|||||||
Map<String, dynamic> toJson() => _$PatchToJson(this);
|
Map<String, dynamic> toJson() => _$PatchToJson(this);
|
||||||
|
|
||||||
String getSimpleName() {
|
String getSimpleName() {
|
||||||
return name.replaceAll('-', ' ').split('-').join(' ').toTitleCase();
|
return name
|
||||||
|
.replaceAll('-', ' ')
|
||||||
|
.split('-')
|
||||||
|
.join(' ')
|
||||||
|
.toTitleCase()
|
||||||
|
.replaceFirst('Microg', 'MicroG');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user