Skip to content
This repository has been archived by the owner on Mar 2, 2024. It is now read-only.

Commit

Permalink
Try not removing query params in xma urls
Browse files Browse the repository at this point in the history
  • Loading branch information
tulir committed Sep 7, 2023
1 parent 543b50e commit c9860d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion maufbapi/types/graphql/responses.py
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ def xma_tpl_url(self) -> Optional[URL]:
)
if not url:
return None
return URL(url).with_query(None)
return URL(url) # .with_query(None)

@property
def is_likely_bridgeable(self) -> bool:
Expand Down

1 comment on commit c9860d7

@Lujfbfjfnd

This comment was marked as off-topic.

Please sign in to comment.