summaryrefslogtreecommitdiff
path: root/plugin_loader/loader.py
diff options
context:
space:
mode:
authortza <marios8543@gmail.com>2022-05-10 23:17:09 +0300
committertza <marios8543@gmail.com>2022-05-10 23:17:09 +0300
commitf3ab0f59897c4cb25a921be8ae3b0a9b55b3d3f4 (patch)
tree7ce1b12efc1d0ed33c160167fcc8adf5dedccad1 /plugin_loader/loader.py
parent0d0e57e35aebdc847fbefe1d791f72cc0979fa5a (diff)
downloaddecky-loader-f3ab0f59897c4cb25a921be8ae3b0a9b55b3d3f4.tar.gz
decky-loader-f3ab0f59897c4cb25a921be8ae3b0a9b55b3d3f4.zip
Plugin store button now uses built-in browser
Diffstat (limited to 'plugin_loader/loader.py')
-rw-r--r--plugin_loader/loader.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin_loader/loader.py b/plugin_loader/loader.py
index fea5f149..681c8251 100644
--- a/plugin_loader/loader.py
+++ b/plugin_loader/loader.py
@@ -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: