diff options
Diffstat (limited to 'mastodon')
-rw-r--r-- | mastodon/Mastodon.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mastodon/Mastodon.py b/mastodon/Mastodon.py index 08a91a0..d502597 100644 --- a/mastodon/Mastodon.py +++ b/mastodon/Mastodon.py | |||
@@ -3270,7 +3270,7 @@ class Mastodon: | |||
3270 | """ | 3270 | """ |
3271 | Parse dates in certain known json fields, if possible. | 3271 | Parse dates in certain known json fields, if possible. |
3272 | """ | 3272 | """ |
3273 | known_date_fields = ["created_at", "week", "day", "expires_at", "scheduled_at", "updated_at", "last_status_at", "starts_at", "ends_at", "published_at"] | 3273 | known_date_fields = ["created_at", "week", "day", "expires_at", "scheduled_at", "updated_at", "last_status_at", "starts_at", "ends_at", "published_at", "edited_at"] |
3274 | for k, v in json_object.items(): | 3274 | for k, v in json_object.items(): |
3275 | if k in known_date_fields: | 3275 | if k in known_date_fields: |
3276 | if v != None: | 3276 | if v != None: |