mirror of
https://github.com/ImranR98/Obtainium.git
synced 2025-08-19 13:09:30 +02:00
Fixed error reporting in add app box
This commit is contained in:
@@ -57,7 +57,9 @@ class _AddAppPageState extends State<AddAppPage> {
|
||||
} catch (e) {
|
||||
return e is String
|
||||
? e
|
||||
: 'Error';
|
||||
: e is ObtainiumError
|
||||
? e.toString()
|
||||
: 'Error';
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
Reference in New Issue
Block a user