Fix compilation error in notification_service.dart

This commit is contained in:
Patrick Britton 2026-02-04 17:46:53 -06:00
parent c635da552d
commit 48dfc76173

View file

@ -478,7 +478,7 @@ class NotificationService {
case 'message':
final conversationId = data['conversation_id'];
if (conversationId != null) {
await _openConversation(conversationId.toString());
_openConversation(conversationId.toString());
} else {
router.go(AppRoutes.secureChat);
}