Revert "Vendor update"

This reverts commit e5f062ee91.
This commit is contained in:
Morgan Bazalgette
2017-07-25 15:09:02 +02:00
parent e5f062ee91
commit 2535a03c5f
23 changed files with 226 additions and 380 deletions

View File

@@ -9,7 +9,7 @@ type OsuBool bool
// UnmarshalJSON converts `"0"` to false and `"1"` to true.
func (o *OsuBool) UnmarshalJSON(data []byte) error {
if string(data) == `0` {
if string(data) == `"0"` {
*o = false
return nil
}