You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Detect old servers which don't support this feature
if !strings.Contains(headers["Content-Type"], "application/json") {
err = Forbidden
return
}
The text was updated successfully, but these errors were encountered:
Halfi
changed the title
Bulk upload method return err if content type exists charset
Bulk upload method returns err if content type exists charset
Apr 3, 2019
If server returns content type like this
application/json; charset=utf-8
, it brokens client.swift/swift.go
Line 1993 in 24e3012
Please use
strings.Contains
instead equal.The text was updated successfully, but these errors were encountered: