diff --git a/lib/src/Store.dart b/lib/src/Store.dart index ea882c9..ff71389 100644 --- a/lib/src/Store.dart +++ b/lib/src/Store.dart @@ -177,11 +177,13 @@ class Store { /// Stores an UserUpdate object in the database. Must be called inside of /// [transaction]. Future storeUserEventUpdate(UserUpdate userUpdate) { + print("New userUpdate"); dynamic eventContent = userUpdate.content; String type = userUpdate.type; switch (userUpdate.eventType) { case "m.direct": + print("New direct update: ${userUpdate.content}"); if (userUpdate.content["content"] is Map>) { Map> directMap = userUpdate.content["content"]; directMap.forEach((String key, List value) {