clean up updater logic

This commit is contained in:
AAGaming
2024-02-19 23:42:24 -05:00
parent 22b732bab4
commit 7e3f9edacf
4 changed files with 8 additions and 7 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
(async () => {
console.debug('Setting up decky-frontend-lib...');
window.DFL = await import('decky-frontend-lib');
console.debug('Authenticating to Decky backend...');
console.debug('Authenticating with Decky backend...');
window.deckyAuthToken = await fetch('http://127.0.0.1:1337/auth/token').then((r) => r.text());
console.debug('Connecting to Decky backend...');
window.DeckyBackend = new (await import('./wsrouter')).WSRouter();