Fix updating of motion comments for inmemory cache.

get_restricted_data() has to use deepcopy(full_data) instead of
full_data.copy().
This commit is contained in:
Emanuel Schütze 2016-11-02 00:09:59 +01:00
parent b0ff8375a8
commit 2c09b409d7
1 changed files with 3 additions and 1 deletions

View File

@ -1,3 +1,5 @@
from copy import deepcopy
from ..core.config import config
from ..utils.access_permissions import BaseAccessPermissions
@ -29,7 +31,7 @@ class MotionAccessPermissions(BaseAccessPermissions):
if user.has_perm('motions.can_see_and_manage_comments') or not full_data.get('comments'):
data = full_data
else:
data = full_data.copy()
data = deepcopy(full_data)
for i, field in enumerate(config['motions_comments']):
if not field.get('public'):
try: