diff --git a/files/helpers/can_see.py b/files/helpers/can_see.py index 1f943b578..57137d9c0 100644 --- a/files/helpers/can_see.py +++ b/files/helpers/can_see.py @@ -6,7 +6,7 @@ from flask import request def can_see(user, obj): if isinstance(obj, (Post, Comment)): - if not user and SITE == 'watchpeopledie.tv' and isinstance(obj, Post) and obj.hole == 'sandshit': + if not user and SITE == 'watchpeopledie.tv' and isinstance(obj, Post) and obj.hole in {'sandshit','isis'}: return False if not can_see(user, obj.author): return False