diff --git a/atlassian/confluence.py b/atlassian/confluence.py index 0b7a07ef2..aaa66bf53 100644 --- a/atlassian/confluence.py +++ b/atlassian/confluence.py @@ -1468,7 +1468,7 @@ def download_attachments_from_page(self, page_id, path=None, start=0, limit=50, downloaded_files = {} for attachment in attachments: file_name = attachment["title"] or attachment["id"] # Use attachment ID if title is unavailable - download_link = self.url + attachment["_links"]["download"] + download_link = attachment["_links"]["download"] # Fetch the file content response = self.get(str(download_link), not_json_response=True)