Settings sync: solved etag mismatch issue.

This was caused by doing a cached request, which would always return
the etag of the previous request.
This commit is contained in:
Sybren A. Stüvel 2016-07-22 12:57:15 +02:00
parent 3776246d70
commit c2363d248b

View File

@ -856,7 +856,8 @@ async def attach_file_to_group(file_path: pathlib.Path,
group_node_id,
'file',
str(file_path),
extra_where=user_id and {'user': user_id})
extra_where=user_id and {'user': user_id},
caching=False)
return node