Skip to content
Snippets Groups Projects
Commit 9f5042db authored by Zed's avatar Zed
Browse files

Add missing entry type to entryId parser

parent 3107ab0a
No related branches found
No related tags found
No related merge requests found
......@@ -59,7 +59,7 @@ proc getEntryId*(js: JsonNode): string {.inline.} =
let entry = js{"entryId"}.getStr
if entry.len == 0: return
if "tweet" in entry:
if "tweet" in entry or "sq-I-t" in entry:
return entry.getId
elif "tombstone" in entry:
return js{"content", "item", "content", "tombstone", "tweet", "id"}.getStr
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment