Skip to content

Commit

Permalink
fix: Fix issue with updating bubbles
Browse files Browse the repository at this point in the history
  • Loading branch information
Bin-Huang committed Oct 7, 2024
1 parent c077969 commit 2fba84b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/packages/remote.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export async function checkNeedUpdate(version: string, os: string, config: Confi
type Response = {
need_update?: boolean
}
const res = await ofetch<Response>(`${API_ORIGIN}/chatbox_need_update/${version}`, {
const res = await ofetch<Response>(`${API_ORIGIN}/ce/chatbox_need_update/${version}`, {
method: 'POST',
retry: 3,
body: {
Expand Down

0 comments on commit 2fba84b

Please sign in to comment.