From 43e87f51741ef37bc13fcc47ac5d44add9b98c0c Mon Sep 17 00:00:00 2001 From: Zed Date: Mon, 1 Jun 2020 10:30:57 +0200 Subject: [PATCH] Expand "bounced" tombstone match --- src/parserutils.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parserutils.nim b/src/parserutils.nim index 01d60c1..4a28b29 100644 --- a/src/parserutils.nim +++ b/src/parserutils.nim @@ -104,7 +104,7 @@ proc getTombstone*(js: JsonNode): string = result = "This tweet is unavailable." of "Deactivated": result = "This tweet is from an account that no longer exists." - of "Bounced": + of "Bounced", "BounceDeleted": result = "This tweet violated the Twitter rules." else: result = js{"tombstoneInfo", "richText", "text"}.getStr