Fix compilation error in notification_service.dart
This commit is contained in:
parent
c635da552d
commit
48dfc76173
|
|
@ -478,7 +478,7 @@ class NotificationService {
|
||||||
case 'message':
|
case 'message':
|
||||||
final conversationId = data['conversation_id'];
|
final conversationId = data['conversation_id'];
|
||||||
if (conversationId != null) {
|
if (conversationId != null) {
|
||||||
await _openConversation(conversationId.toString());
|
_openConversation(conversationId.toString());
|
||||||
} else {
|
} else {
|
||||||
router.go(AppRoutes.secureChat);
|
router.go(AppRoutes.secureChat);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue