Skip to content

Commit

Permalink
remove accidental dollar sign
Browse files Browse the repository at this point in the history
  • Loading branch information
PartyWumpus authored Feb 4, 2024
1 parent a9dd5fd commit 26e8f11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/updater.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ async def download_testing_version(self, pr_id: str, sha_id: str):
jresp = await res.json()
#If the request found at least one artifact to download...
if int(jresp['total_count']) is not 0:
down_link = f"https://nightly.link/SteamDeckHomebrew/decky-loader/actions/artifacts/${jresp['artifacts']['id']}.zip"
down_link = f"https://nightly.link/SteamDeckHomebrew/decky-loader/actions/artifacts/{jresp['artifacts']['id']}.zip"
#Then fetch it and restart itself
await self.download_decky_binary(down_link, 'PR-' + pr_id, True)
#TODO: If I ended here either the API is rate limiting or there is no artifact for that specific head_sha yet, show an UI warning here.
Expand Down

0 comments on commit 26e8f11

Please sign in to comment.