mirror of
https://github.com/home-assistant/core.git
synced 2025-07-21 20:27:08 +00:00
Fix limit of shown backups on Synology DSM location (#145342)
This commit is contained in:
parent
eb85185072
commit
5e25bbba2d
@ -236,7 +236,7 @@ class SynologyDSMBackupAgent(BackupAgent):
|
||||
raise BackupAgentError("Failed to read meta data") from err
|
||||
|
||||
try:
|
||||
files = await self._file_station.get_files(path=self.path)
|
||||
files = await self._file_station.get_files(path=self.path, limit=1000)
|
||||
except SynologyDSMAPIErrorException as err:
|
||||
raise BackupAgentError("Failed to list backups") from err
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user