Skip to content

Commit 690abc2

Browse files
committed
Merge branch 'master' into release
2 parents fd86a15 + 23ea522 commit 690abc2

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

RELEASE_NOTES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
- Fixed infinite loading issue when the app is opened for the first time.
12
- Fixed text overflow with anime title on MAL updater dialog.
23
- Fixed issue with MAL updater for dub entries.
34
- Added sub or dub indicator in MAL updater dialog.

lib/src/services/concretes/google-api.service.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class GoogleApiService extends GoogleApiInterface {
4747
final result = FirebaseSubscription.fromJson(response.data);
4848
print(['getFirebaseSubscription()', '${result.topics.keys.length} topics']);
4949
return result;
50-
} on Exception {
50+
} catch (e) {
5151
print(['getFirebaseSubscription() ERROR', path]);
5252
return FirebaseSubscription();
5353
}

0 commit comments

Comments
 (0)