fix: update feed emits string client values instead of numeric 0/1 #602
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
The Joomla update XML feed emits
<client>site</client>and<client>administrator</client>as string values. Joomla'sUpdate.phpcasts<client>to int, so both strings cast to0(site). Admin extensions get misidentified as site-side.Expected
Current
Fix
In
services/updateserver/joomla.golines 386-389, change string values to numeric:Impact
All admin-side Joomla extensions (packages, components, libraries, files) served via MokoGitea update feeds have incorrect client values. Joomla may fail to match updates for these extensions.
jmiller referenced this issue2026-06-11 21:16:36 +00:00
Duplicate of #601 (consolidated all update server feed bugs into one issue).