mirror of
https://github.com/Iconica-Development/flutter_chat.git
synced 2025-05-18 18:33:49 +02:00
fix: personal chats
This commit is contained in:
parent
e3a63a9f4b
commit
3003ed5389
1 changed files with 1 additions and 1 deletions
|
@ -253,7 +253,7 @@ class FirebaseChatService implements ChatService {
|
||||||
var chatCollection = await _db
|
var chatCollection = await _db
|
||||||
.collection(_options.usersCollectionName)
|
.collection(_options.usersCollectionName)
|
||||||
.doc(currentUser?.id)
|
.doc(currentUser?.id)
|
||||||
.collection(_options.chatsCollectionName)
|
.collection('chats')
|
||||||
.doc(chatId)
|
.doc(chatId)
|
||||||
.get();
|
.get();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue