Fixing motion comments (fixes #3420)

This commit is contained in:
FinnStutzenstein 2017-09-27 09:19:14 +02:00
parent 88fabd10ab
commit 6f33c8a866

View File

@ -65,7 +65,7 @@ class MotionAccessPermissions(BaseAccessPermissions):
# Set private comment fields to None.
full_copy = deepcopy(full)
for i, field in config['motions_comments'].items():
if not field.get('public'):
if field is None or not field.get('public'):
try:
full_copy['comments'][i] = None
except IndexError:
@ -90,7 +90,7 @@ class MotionAccessPermissions(BaseAccessPermissions):
if full.get('comments') is not None:
full_copy = deepcopy(full)
for i, field in config['motions_comments'].items():
if not field.get('public'):
if field is None or not field.get('public'):
try:
full_copy['comments'][i] = None
except IndexError: