Fix limit of shown backups on Synology DSM location (#145342)

This commit is contained in:
Michael 2025-05-21 10:22:47 +02:00 committed by GitHub
parent eb85185072
commit 5e25bbba2d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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