We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9fa0a4b + b06423e commit 640f578Copy full SHA for 640f578
1 file changed
server/mergin/sync/models.py
@@ -1099,7 +1099,10 @@ def process_chunks(
1099
errors[f.path] = FileSyncErrorType.CORRUPTED.value
1100
continue
1101
1102
- if not is_supported_type(temporary_location):
+ if (
1103
+ not f.change == PushChangeType.UPDATE_DIFF
1104
+ and not is_supported_type(temporary_location)
1105
+ ):
1106
logging.info(f"Rejecting blacklisted file: {temporary_location}")
1107
errors[f.path] = FileSyncErrorType.UNSUPPORTED.value
1108
0 commit comments