Plugin store button now uses built-in browser

This commit is contained in:
tza
2022-05-10 23:17:09 +03:00
parent 0d0e57e35a
commit f3ab0f5989
5 changed files with 19 additions and 24 deletions
+1 -1
View File
@@ -121,7 +121,7 @@ class Loader:
return await self.callsigns[callsign].execute_method(method_name, kwargs)
async def get_steam_resource(self, request):
tab = (await get_tabs())[0]
tab = await get_tab("QuickAccess")
try:
return web.Response(text=await tab.get_steam_resource(f"https://steamloopback.host/{request.match_info['path']}"), content_type="text/html")
except Exception as e: