You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When tracking the Stable release channel, the prerelease flag might not be present in OctoPrint's check config. It still tries to fetch it though when populating the check config, resulting in a KeyError.
Solution
Use check.get("prerelease", None) instead of check["prerelease"] throughout the code.
The text was updated successfully, but these errors were encountered:
Problem
When tracking the Stable release channel, the
prerelease
flag might not be present in OctoPrint's check config. It still tries to fetch it though when populating the check config, resulting in aKeyError
.Solution
Use
check.get("prerelease", None)
instead ofcheck["prerelease"]
throughout the code.The text was updated successfully, but these errors were encountered: