Skip to content

Commit d645e20

Browse files
committed
Also set user_id for authenticated downloads
1 parent 3e89f1f commit d645e20

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

mautrix/client/api/modules/media_repository.py

+4
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,8 @@ async def download_media(self, url: ContentURI, timeout_ms: int | None = None) -
189189
headers: dict[str, str] = {}
190190
if authenticated:
191191
headers["Authorization"] = f"Bearer {self.api.token}"
192+
if self.api.as_user_id:
193+
query_params["user_id"] = self.api.as_user_id
192194
req_id = self.api.log_download_request(url, query_params)
193195
start = time.monotonic()
194196
async with self.api.session.get(url, params=query_params, headers=headers) as response:
@@ -248,6 +250,8 @@ async def download_thumbnail(
248250
headers: dict[str, str] = {}
249251
if authenticated:
250252
headers["Authorization"] = f"Bearer {self.api.token}"
253+
if self.api.as_user_id:
254+
query_params["user_id"] = self.api.as_user_id
251255
req_id = self.api.log_download_request(url, query_params)
252256
start = time.monotonic()
253257
async with self.api.session.get(url, params=query_params, headers=headers) as response:

0 commit comments

Comments
 (0)