From 9e9b0f6083222e21f24bf953cecbf8d67320cedf Mon Sep 17 00:00:00 2001 From: Aleksandr Zelenin Date: Wed, 6 Nov 2019 20:23:19 +0300 Subject: [PATCH] format fix --- client/tdlib.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/tdlib.go b/client/tdlib.go index 4214288..1241151 100644 --- a/client/tdlib.go +++ b/client/tdlib.go @@ -139,7 +139,7 @@ type JsonInt64 int64 // MarshalJSON marshals to json func (jsonInt64 JsonInt64) MarshalJSON() ([]byte, error) { - return []byte(`"`+strconv.FormatInt(int64(jsonInt64), 10)+`"`), nil + return []byte(`"` + strconv.FormatInt(int64(jsonInt64), 10) + `"`), nil } // UnmarshalJSON unmarshals from json