diff --git a/lib/pages/add_app.dart b/lib/pages/add_app.dart index 218c479..8b96dcb 100644 --- a/lib/pages/add_app.dart +++ b/lib/pages/add_app.dart @@ -57,7 +57,9 @@ class _AddAppPageState extends State { } catch (e) { return e is String ? e - : 'Error'; + : e is ObtainiumError + ? e.toString() + : 'Error'; } return null; }