Merge pull request #790 from pangeachat/unsupported-operation-fix

changed list from const to final to prevent unsupported operation err…
pull/1428/head
ggurdin 1 year ago committed by GitHub
commit 821d79e4af
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -196,7 +196,7 @@ class PangeaController {
return;
}
const List<Room> botDMs = [];
final List<Room> botDMs = [];
for (final room in matrixState.client.rooms) {
if (await room.isBotDM) {
botDMs.add(room);

Loading…
Cancel
Save