Ignore case
This commit is contained in:
parent
8b2b918b80
commit
29e8fbfb41
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ Future<bool> isLowSpecDevice() async {
|
|||
Future<bool> isGrapheneOS() async {
|
||||
if (Platform.isAndroid) {
|
||||
final androidInfo = await deviceInfoPlugin.androidInfo;
|
||||
return androidInfo.host == "grapheneos";
|
||||
return androidInfo.host.toLowerCase() == "grapheneos";
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue