We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fd86a15 + 23ea522 commit 690abc2Copy full SHA for 690abc2
2 files changed
RELEASE_NOTES.md
@@ -1,3 +1,4 @@
1
+- Fixed infinite loading issue when the app is opened for the first time.
2
- Fixed text overflow with anime title on MAL updater dialog.
3
- Fixed issue with MAL updater for dub entries.
4
- Added sub or dub indicator in MAL updater dialog.
lib/src/services/concretes/google-api.service.dart
@@ -47,7 +47,7 @@ class GoogleApiService extends GoogleApiInterface {
47
final result = FirebaseSubscription.fromJson(response.data);
48
print(['getFirebaseSubscription()', '${result.topics.keys.length} topics']);
49
return result;
50
- } on Exception {
+ } catch (e) {
51
print(['getFirebaseSubscription() ERROR', path]);
52
return FirebaseSubscription();
53
}
0 commit comments