diff --git a/lib/src/Store.dart b/lib/src/Store.dart index 979294d5..50b495d3 100644 --- a/lib/src/Store.dart +++ b/lib/src/Store.dart @@ -207,6 +207,8 @@ class Store { if (type == "timeline" || type == "history") { // calculate the status num status = 2; + if (eventContent["status"] is num) status = eventContent["status"]; + // Make unsigned part of the content if (eventContent["unsigned"] is Map) eventContent["content"]["unsigned"] = eventContent["unsigned"];