diff options
| author | AAGaming <aagaming@riseup.net> | 2024-02-19 23:42:24 -0500 |
|---|---|---|
| committer | AAGaming <aagaming@riseup.net> | 2024-02-19 23:42:24 -0500 |
| commit | 7e3f9edacf6a96e821a7e1850b598b6e303fae1c (patch) | |
| tree | 30f475ece6a1d01a2193a25e445c0af3111fb643 /frontend/src/index.ts | |
| parent | 22b732bab447f38157b95f33e8a1940db4e0fbf1 (diff) | |
| download | decky-loader-7e3f9edacf6a96e821a7e1850b598b6e303fae1c.tar.gz decky-loader-7e3f9edacf6a96e821a7e1850b598b6e303fae1c.zip | |
clean up updater logic
Diffstat (limited to 'frontend/src/index.ts')
| -rw-r--r-- | frontend/src/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/index.ts b/frontend/src/index.ts index 1ca06b0e..91324b4f 100644 --- a/frontend/src/index.ts +++ b/frontend/src/index.ts @@ -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(); |
