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:
parent
b0ff8375a8
commit
2c09b409d7
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user