mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-03 03:04:53 -04:00
Preserve version string in user agent
This commit is contained in:
parent
8fc52bc56a
commit
b28c7da0a4
2 changed files with 4 additions and 4 deletions
|
@ -67,9 +67,9 @@ class SimpleHttpClient(object):
|
|||
connectTimeout=15,
|
||||
contextFactory=hs.get_http_client_context_factory()
|
||||
)
|
||||
self.user_agent = hs.config.user_agent_override
|
||||
if self.user_agent is None:
|
||||
self.user_agent = hs.version_string
|
||||
self.user_agent = hs.version_string
|
||||
if hs.config.user_agent_suffix:
|
||||
self.user_agent += " - " + hs.config.user_agent_suffix
|
||||
|
||||
def request(self, method, uri, *args, **kwargs):
|
||||
# A small wrapper around self.agent.request() so we can easily attach
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue