Skip to content

Commit

Permalink
fix: use POST for firmware update checks
Browse files Browse the repository at this point in the history
  • Loading branch information
AlCalzone committed Dec 10, 2024
1 parent 482dc23 commit 887c009
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ async function cachedRequest<T>(url: string, config: KyOptions): Promise<T> {
}

const { default: ky } = await import("ky");
const response = await ky.get(url, config);
const response = await ky(url, config);
const responseJson = await response.json<T>();

// Check if we can cache the response
Expand Down

0 comments on commit 887c009

Please sign in to comment.