1
0
forked from clan/clan-core

Merge pull request 'URI: Fixed removed url fragment' (#775) from Qubasa-main into main

This commit is contained in:
clan-bot 2024-01-30 06:31:29 +00:00
commit 4e30c4cfff

View File

@ -85,7 +85,7 @@ class ClanURI:
clan_params["flake_attr"] = self._components.fragment.split("#")[0]
# Replace the query string in the components with the new query string
self._components = self._components._replace(query=real_query)
self._components = self._components._replace(query=real_query, fragment="")
# Create a ClanParameters object from the clan_params dictionary
self.params = ClanParameters(**clan_params)