mirror of
https://github.com/c0re100/gotdlib.git
synced 2026-02-21 20:20:17 +01:00
Merge pull request #15 from suntoucha/jsonint64_marshal_fix
FIX: JsonInt64.MarshalJSON missing quotes
This commit is contained in:
commit
faee0d86f7
1 changed files with 2 additions and 2 deletions
|
|
@ -138,8 +138,8 @@ func buildResponseError(data json.RawMessage) error {
|
|||
type JsonInt64 int64
|
||||
|
||||
// MarshalJSON marshals to json
|
||||
func (jsonInt64 *JsonInt64) MarshalJSON() ([]byte, error) {
|
||||
return []byte(strconv.FormatInt(int64(*jsonInt64), 10)), nil
|
||||
func (jsonInt64 JsonInt64) MarshalJSON() ([]byte, error) {
|
||||
return []byte(`"`+strconv.FormatInt(int64(jsonInt64), 10)+`"`), nil
|
||||
}
|
||||
|
||||
// UnmarshalJSON unmarshals from json
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue