relay: fix mastodon announce check
authorkaniini <kaniini@dereferenced.org>
Wed, 31 Oct 2018 02:39:48 +0000 (02:39 +0000)
committerkaniini <kaniini@dereferenced.org>
Wed, 31 Oct 2018 02:39:48 +0000 (02:39 +0000)
relay/actor.py

index bc8c680..b8ff942 100644 (file)
@@ -160,7 +160,7 @@ async def handle_relay(actor, data, request):
     object_id = distill_object_id(data)
 
     # don't relay mastodon announces -- causes LRP fake direction issues
-    if data['type'] == 'Announce' and length(data.get('cc', [])) > 0:
+    if data['type'] == 'Announce' and len(data.get('cc', [])) > 0:
         return
 
     message = {