Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion atlassian/confluence.py
Original file line number Diff line number Diff line change
Expand Up @@ -1468,7 +1468,7 @@
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"]

Check warning on line 1471 in atlassian/confluence.py

View check run for this annotation

Codecov / codecov/patch

atlassian/confluence.py#L1471

Added line #L1471 was not covered by tests
# Fetch the file content
response = self.get(str(download_link), not_json_response=True)

Expand Down