Fixes email migration

This commit is contained in:
Mouse Reeve
2021-01-18 11:57:20 -08:00
parent 8a00c7741a
commit 96cc9d44db
3 changed files with 4 additions and 20 deletions

View File

@ -36,6 +36,8 @@ def is_bookworm_request(request):
def object_visible_to_user(viewer, obj):
''' is a user authorized to view an object? '''
if not obj:
return False
if viewer == obj.user or obj.privacy in ['public', 'unlisted']:
return True
if obj.privacy == 'followers' and \