We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3299481 commit 65b7960Copy full SHA for 65b7960
homeassistant/components/onedrive/backup.py
@@ -163,7 +163,10 @@ async def async_upload_backup(
163
)
164
try:
165
backup_file = await LargeFileUploadClient.upload(
166
- self._token_function, file, session=async_get_clientsession(self._hass)
+ self._token_function,
167
+ file,
168
+ upload_chunk_size=UPLOAD_CHUNK_SIZE,
169
+ session=async_get_clientsession(self._hass),
170
171
except HashMismatchError as err:
172
raise BackupAgentError(
0 commit comments