From 4c56424babec92e4947f45d8f4dfdbf102cfcad2 Mon Sep 17 00:00:00 2001 From: Christian Date: Wed, 12 Jun 2019 07:26:51 +0000 Subject: [PATCH] Update lib/src/Store.dart --- lib/src/Store.dart | 2 ++ 1 file changed, 2 insertions(+) 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=?",