Restore download URL fallback for non-desktop installs

This commit is contained in:
Anthony Stirling
2026-05-26 15:14:29 +01:00
parent 45da220060
commit a95db1aa8b
@@ -108,10 +108,11 @@ const UpdateModal: React.FC<UpdateModalProps> = ({
) > 0
: false;
const downloadUrl =
isDesktop && desktopNeedsUpdate
const downloadUrl = isDesktop
? desktopNeedsUpdate
? updateService.getDownloadUrl(machineInfo, true)
: null;
: null
: updateService.getDownloadUrl(machineInfo);
return (
<Modal