Merge branch 'states-fix-return-null' into 'master'

[States] Return null on null key

See merge request famedly/famedlysdk!187
This commit is contained in:
Christian Pauly 2020-02-14 13:30:57 +00:00
commit 0f68b60f16

View file

@ -9,6 +9,7 @@ class StatesMap {
/// If you just enter a MatrixID, it will try to return the corresponding m.room.member event.
dynamic operator [](String key) {
//print("[Warning] This method will be depracated in the future!");
if (key == null) return null;
if (key.startsWith("@") && key.contains(":")) {
if (!states.containsKey("m.room.member")) states["m.room.member"] = {};
return states["m.room.member"][key];