diff --git a/server/mergin/sync/models.py b/server/mergin/sync/models.py index 98241d35..9574a69d 100644 --- a/server/mergin/sync/models.py +++ b/server/mergin/sync/models.py @@ -1099,7 +1099,10 @@ def process_chunks( errors[f.path] = FileSyncErrorType.CORRUPTED.value continue - if not is_supported_type(temporary_location): + if ( + not f.change == PushChangeType.UPDATE_DIFF + and not is_supported_type(temporary_location) + ): logging.info(f"Rejecting blacklisted file: {temporary_location}") errors[f.path] = FileSyncErrorType.UNSUPPORTED.value continue