Merge branch 'soru/fix-no-pusher-endpoint' into 'main'

fix: no pushers enpdoint

See merge request ChristianPauly/fluffychat-flutter!253
This commit is contained in:
Christian Pauly 2020-10-30 09:07:33 +00:00
commit 12cb66b468
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ abstract class FirebaseController {
}
final pushers = await client.requestPushers().catchError((e) {
debugPrint('[Push] Unable to request pushers: ${e.toString()}');
return [];
return <Pusher>[];
});
final currentPushers = pushers.where((pusher) => pusher.pushkey == token);
if (currentPushers.length == 1 &&