From ef1503b49f264c05bd4c331f62a4a503e86d9bf6 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Sun, 18 Jun 2023 16:08:10 +0100 Subject: [PATCH] Include videos --- webapp_profile.py | 1 + 1 file changed, 1 insertion(+) diff --git a/webapp_profile.py b/webapp_profile.py index 6c447212b..07772a90a 100644 --- a/webapp_profile.py +++ b/webapp_profile.py @@ -119,6 +119,7 @@ def _valid_profile_preview_post(post_json_object: {}, if post_json_object['type'] != 'Create' and \ post_json_object['type'] != 'Announce': if post_json_object['type'] != 'Note' and \ + post_json_object['type'] != 'Video' and \ post_json_object['type'] != 'Page': return False, None if not post_json_object.get('to'):