Commit 62be9c7c authored by Chris Molozian's avatar Chris Molozian
Browse files

Fix typo.

parent 29cc7a6f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -928,7 +928,7 @@ func (n *RuntimeGoNakamaModule) StorageWrite(writes []*runtime.StorageWrite) ([]
			}
		}
		var valueMap map[string]interface{}
		err = json.Unmarshal([]byte(write.Value), valueMap)
		err = json.Unmarshal([]byte(write.Value), &valueMap)
		if err != nil {
			return nil, errors.New("value must be a JSON-encoded object")
		}