fix game theme music error

This commit is contained in:
AAGaming
2024-07-28 20:25:25 -04:00
parent 52b40b7d0c
commit 5e270de990
+1 -1
View File
@@ -197,7 +197,7 @@ class Utilities:
self.logger.debug(f"Finished stream for {url}")
return res
async def http_request_legacy(self, method: str, url: str, extra_opts: Any = {}):
async def http_request_legacy(self, method: str, url: str, timeout: int | None = None, extra_opts: Any = {}):
async with ClientSession() as web:
res = await web.request(method, url, ssl=helpers.get_ssl_context(), **extra_opts)
text = await res.text()