fix(desktop): don't claim the backend update succeeded when it never returns

The no-return error said 'Backend updated but did not come back online' — but
once the connection drops the client can't know the update's exit code, only
that it was started and the backend is unreachable. Reword to not overclaim:
the update may not have completed.
This commit is contained in:
yoniebans 2026-06-08 13:59:31 +02:00 committed by Teknium
parent cd030f5f40
commit b000e05b11

View file

@ -336,7 +336,7 @@ function finishBackendApply(returned: boolean): DesktopUpdateApplyResult {
applying: false,
stage: 'error',
error: 'apply-failed',
message: 'Backend updated but did not come back online. Check the backend host.'
message: 'Backend didnt come back online. The update may not have completed — check the backend host.'
})
return { ok: false, error: 'apply-failed', message: 'Backend did not come back online.' }