LunaEvent: remove quantity when the value is invalid

This commit is contained in:
2025-11-14 18:07:27 +01:00
parent 1106c7d42a
commit f1f6af14ad

View File

@@ -49,6 +49,8 @@ class LunaEvent: Comparable<LunaEvent> {
set(value) {
if (value > 0)
jo.put("quantity", value)
else
jo.remove("quantity")
}
var notes: String
get(): String = jo.optString("notes")