🐛 Bug hotfix launch 2.3.2+72

This commit is contained in:
2025-02-23 18:48:26 +08:00
parent 2a53031c9a
commit 5bdd8e94fa
5 changed files with 66 additions and 26 deletions

View File

@ -65,7 +65,11 @@ class ChatChannelProvider extends ChangeNotifier {
.getSingleOrNull();
if (local != null) {
final out = local.content;
return out.copyWith(realm: await _rels.getRealm(out.realmId!));
if (out.realmId != null) {
return out.copyWith(realm: await _rels.getRealm(out.realmId!));
} else {
return out;
}
}
var resp =