diff --git a/backend/src/templateFormatter.ts b/backend/src/templateFormatter.ts index f5b57b15..31b71774 100644 --- a/backend/src/templateFormatter.ts +++ b/backend/src/templateFormatter.ts @@ -564,7 +564,7 @@ const baseValues = { }, convert_base(value, from, to) { try { - // :joy: + if (typeof value === "number") value = value.toString(); return convertBase(value, from, to); } catch (_) { return "";