mirror of
https://github.com/pelican-dev/panel.git
synced 2026-05-04 18:00:48 +03:00
Startup boolean value error #474
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?
Originally created by @rurueuh on GitHub (Oct 25, 2025).
Current Behavior
Only on "client" server view, boolean value always fail to update (only true to false)
Expected Behavior
Should be able to change value true or false without any error
Steps to Reproduce
Panel Version
1.0.0-beta27
Wings Version
1.0.0-beta18
Games and/or Eggs Affected
any with boolean value
Docker Image
No response
Error Logs
Is there an existing issue for this?
@rmartinoscar commented on GitHub (Oct 25, 2025):
@Boy132 commented on GitHub (Oct 25, 2025):
This is not a bug, that's expected behaviour. If something is
requiredit can't be false, null or empty.If anything, the gmod eggs need to be updated and the
requiredremoved from the variable.@rurueuh commented on GitHub (Oct 25, 2025):
That looks not only the GMod egg but a lot of other eggs (Avorion, Ark, GMod, Brickadia, Assetto and many others, I checked only 7-8 eggs).
Should we fix them one by one, or find a code solution?
And, if a code solution, would you prefer to force "True"/"False" rather than 1 or 0? And I think before it was '1'/'0' as a string (need to confirm this information)
And a required value can be false but not empty or null in many languages and logic.
Update:
on Ark egg for exemple this condition if we remove required can't work anymore
( [ "$SERVER_PVE" == "0" ] || printf %s '?ServerPVE=True' )
@Boy132 commented on GitHub (Nov 4, 2025):
The eggs should be updated and the
requiredrule removed where not needed.