diff --git a/app/activitypub/routes.py b/app/activitypub/routes.py index 82169bbc..5cc76d35 100644 --- a/app/activitypub/routes.py +++ b/app/activitypub/routes.py @@ -431,7 +431,7 @@ def shared_inbox(): log_incoming_ap(id, APLOG_DUPLICATE, APLOG_IGNORED, saved_json, 'Activity about local content which is already present') return '', 200 - id = object['id'] + # id = object['id'] redis_client = get_redis_connection() if redis_client.exists(id): # Something is sending same activity multiple times diff --git a/app/static/styles.css b/app/static/styles.css index b454f909..5885c028 100644 --- a/app/static/styles.css +++ b/app/static/styles.css @@ -1475,6 +1475,10 @@ fieldset legend { float: right; } +.post_body { + padding-top: 10px; +} + .post_body, .comment_body { word-wrap: break-word; } diff --git a/app/static/styles.scss b/app/static/styles.scss index e883b25e..3929fce2 100644 --- a/app/static/styles.scss +++ b/app/static/styles.scss @@ -1143,6 +1143,10 @@ fieldset { float: right; } +.post_body { + padding-top: 10px; +} + .post_body, .comment_body { word-wrap: break-word;