diff --git a/CHANGELOG.md b/CHANGELOG.md index 07a027d5..a332fcde 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,9 @@ ## [Unreleased] +### Fixed +- Download key lost on update: cleanupStaleUpdateSites used old /raw/branch/main/ URL format, deleting the manifest-registered update site that held the key + ## [02.35.00] - 2026-06-06 ### Added diff --git a/source/script.php b/source/script.php index f9739a46..e13c52d6 100644 --- a/source/script.php +++ b/source/script.php @@ -601,7 +601,7 @@ class Pkg_MokowaasInstallerScript try { $db = Factory::getDbo(); - $dynamicUrl = 'https://git.mokoconsulting.tech/MokoConsulting/MokoWaaS/raw/branch/main/updates.xml'; + $dynamicUrl = 'https://git.mokoconsulting.tech/MokoConsulting/MokoWaaS/updates.xml'; // Find all MokoWaaS update sites $query = $db->getQuery(true)