fix VersionInfo toJSON

This commit is contained in:
HJfod 2024-11-16 01:10:43 +02:00
parent 9fe3d133e9
commit f6c23220d8

View file

@ -266,6 +266,6 @@ struct matjson::Serialize<V> {
} }
static Value toJson(V const& value) { static Value toJson(V const& value) {
return Value(value.toString()); return Value(value.toNonVString());
} }
}; };