diff options
author | Marius Orcsik | 2019-12-05 19:16:48 +0100 |
---|---|---|
committer | Marius Orcsik | 2019-12-05 19:16:48 +0100 |
commit | 67aa065f9f6f627264f0f3e080239156460f11a8 (patch) | |
tree | 7fa3d792fe99e141947022e6e01a780e17486e31 /object.go | |
parent | b89c9ee68cdb04f3b5a5dc319c10899670e816b6 (diff) |
Some other places where we removed Object from names of things
Diffstat (limited to 'object.go')
-rw-r--r-- | object.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -250,7 +250,7 @@ func (o *Object) UnmarshalJSON(data []byte) error { if ItemTyperFunc == nil { ItemTyperFunc = JSONGetItemByType } - o.ID = JSONGetObjectID(data) + o.ID = JSONGetID(data) o.Type = JSONGetType(data) o.Name = JSONGetNaturalLanguageField(data, "name") o.Content = JSONGetNaturalLanguageField(data, "content") |