Skip to content

Commit

Permalink
Merge pull request #8666 from LedgerHQ/fix/live-15353
Browse files Browse the repository at this point in the history
fix(lld): migrate to https to download signatures
  • Loading branch information
KVNLS authored Dec 11, 2024
2 parents 1e60d96 + cf2a2f4 commit 96ce12d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/large-glasses-relate.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"ledger-live-desktop": minor
---

LLD - Migrate to https to download signatures
2 changes: 1 addition & 1 deletion apps/ledger-live-desktop/src/main/updater/init.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export type UpdateStatus =
| "error";
const UPDATE_CHECK_IGNORE = Boolean(process.env.UPDATE_CHECK_IGNORE);
const UPDATE_CHECK_FEED =
process.env.UPDATE_CHECK_FEED || "http://resources.live.ledger.app/public_resources/signatures";
process.env.UPDATE_CHECK_FEED || "https://resources.live.ledger.app/public_resources/signatures";
const sendStatus = (status: UpdateStatus, payload?: unknown) => {
const win = getMainWindow();
if (win) {
Expand Down

0 comments on commit 96ce12d

Please sign in to comment.