fixing bugs

This commit is contained in:
Christien Rioux 2024-05-31 18:55:44 -04:00
parent fd63a0d5e0
commit f780a60d69
3 changed files with 7 additions and 2 deletions

View file

@ -143,7 +143,8 @@ class SingleContactMessagesCubit extends Cubit<SingleContactMessagesState> {
// Open reconciled chat record key
Future<void> _initReconciledMessagesCubit() async {
final tableName = _localConversationRecordKey.toString();
final tableName =
_localConversationRecordKey.toString().replaceAll(':', '_');
final crypto = await _makeLocalMessagesCrypto();