changed list from const to final to prevent unsupported operation error on .add()
This commit is contained in:
parent
d8d069c6da
commit
0d75e961da
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Reference in a new issue