diff options
| author | copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> | 2026-02-11 10:28:28 +0000 |
|---|---|---|
| committer | copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> | 2026-02-11 10:28:28 +0000 |
| commit | ed5433ad7de353aa266a08683075d8363cfb8632 (patch) | |
| tree | fcaa7965b7ddd09309ffa68134cdb8f900aa41ec | |
| parent | 05573b3cd6c77986339a7370c4cc12775b216936 (diff) | |
| download | accelerator-installer-ed5433ad7de353aa266a08683075d8363cfb8632.tar.gz accelerator-installer-ed5433ad7de353aa266a08683075d8363cfb8632.zip | |
Fix: Correct store URL setting key from store_url to store-url
Co-authored-by: tranch <5999732+tranch@users.noreply.github.com>
| -rw-r--r-- | decky_client.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/decky_client.py b/decky_client.py index f02e490..597a9b3 100644 --- a/decky_client.py +++ b/decky_client.py @@ -316,7 +316,7 @@ async def configure_store_url(store_url: str) -> None: log(f"Store type set to custom") log(f"Setting custom store URL: {store_url}") - await client.send(CALL, "utilities/settings/set", ["store_url", store_url]) + await client.send(CALL, "utilities/settings/set", ["store-url", store_url]) msg = await client.recv() if msg is None: raise RuntimeError("Connection closed by server") @@ -362,7 +362,7 @@ async def get_store_url() -> str: # Get store URL log("Getting configured store URL...") - await client.send(CALL, "utilities/settings/get", ["store_url", DEFAULT_STORE_URL]) + await client.send(CALL, "utilities/settings/get", ["store-url", DEFAULT_STORE_URL]) msg = await client.recv() if msg is None: |
