From 5d4b6a7104fc34d8459a61b2a9780ee3ec9bdc8e Mon Sep 17 00:00:00 2001 From: EddieKuo723 <66857463+EddieKuo723@users.noreply.github.com> Date: Wed, 1 Jan 2025 20:13:23 -0800 Subject: [PATCH] Update downloadstation.py Fix missing change for downloadstation --- synology_api/downloadstation.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/synology_api/downloadstation.py b/synology_api/downloadstation.py index 13141be..73942d4 100644 --- a/synology_api/downloadstation.py +++ b/synology_api/downloadstation.py @@ -15,12 +15,14 @@ def __init__(self, dsm_version: int = 7, debug: bool = True, otp_code: Optional[str] = None, + device_id: Optional[str] = None, + device_name: Optional[str] = None, interactive_output: bool = True, download_st_version: int = None ) -> None: super(DownloadStation, self).__init__(ip_address, port, username, password, secure, cert_verify, - dsm_version, debug, otp_code, 'DownloadStation') + dsm_version, debug, otp_code, device_id, device_name, 'DownloadStation') self._bt_search_id: str = '' self._bt_search_id_list: list[str] = []