pretty good

This commit is contained in:
Fabian Freund
2025-02-07 20:45:47 +01:00
parent 025ecaf2e3
commit a12ef8244f
68 changed files with 2359 additions and 1015 deletions
@@ -74,7 +74,13 @@ class ChatArchiveSearchRepository extends _$ChatArchiveSearchRepository {
ellipsis: ellipsis,
)
.get()
.then(_streamController.add);
.then(
(value) {
if (!_streamController.isClosed) {
_streamController.add(value);
}
},
);
}
}
@@ -7,7 +7,7 @@ part of 'search.dart';
// **************************************************************************
String _$chatArchiveSearchRepositoryHash() =>
r'6762958d43d2efc95f5d9848bfcae41436564f2b';
r'407023f1ee8683f21d4263dccc9eab1d7a40278e';
/// See also [ChatArchiveSearchRepository].
@ProviderFor(ChatArchiveSearchRepository)