summaryrefslogtreecommitdiff
path: root/plugin_loader/loader.py
diff options
context:
space:
mode:
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: