From a028b9a628a8830b73ff438160895377e024a16a Mon Sep 17 00:00:00 2001 From: EntireTwix Date: Tue, 15 Jun 2021 13:21:21 -0700 Subject: [PATCH] :bug: silly error --- src/bank_f.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/bank_f.cpp b/src/bank_f.cpp index 4958cc0..de8cb40 100644 --- a/src/bank_f.cpp +++ b/src/bank_f.cpp @@ -23,6 +23,10 @@ INLINE Json::Value JsonReturn(T &&val) { res["value"] = (Json::Int64)val; } + else + { + res["value"] = val; + } return res; }