diff --git a/lib/src/Store.dart b/lib/src/Store.dart index b468121..685a34c 100644 --- a/lib/src/Store.dart +++ b/lib/src/Store.dart @@ -185,8 +185,10 @@ class Store { case "m.direct": print("New direct update: ${userUpdate.content}"); if (userUpdate.content["content"] is Map>) { + print("Is a Map of String to List of Strings"); Map> directMap = userUpdate.content["content"]; directMap.forEach((String key, List value) { + print("Key $key, Value: $value"); if (value.length > 0) txn.rawUpdate( "UPDATE Rooms SET direct_chat_matrix_id=? WHERE id=?",