Add missing entry type to entryId parser
This commit is contained in:
parent
3107ab0ab8
commit
9f5042dbd3
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue