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
{{ message }}
This repository has been archived by the owner on Mar 14, 2023. It is now read-only.
When responding to an error code 400 (line 88-89 in
./gdata-1.1.0/lib/gdata/client.rb) the code will throw an error. This is
because code is passing response.body when it should be passing response
Proposed fix:
Original:
raise BadRequestError, response.body
Proposed:
raise BadRequestError.new(response)
Cheers,
Vince
Original issue reported on code.google.com by [email protected] on 13 Jul 2009 at 10:44
The text was updated successfully, but these errors were encountered:
This seemed to fix the problem for me
sudo vi /Library/Ruby/Gems/1.8/gems/gdata-1.1.0/lib/gdata/client/base.rb
change
when 400
raise BadRequestError, response.body
to
when 400
raise BadRequestError.new(response)
Original issue reported on code.google.com by
[email protected]
on 13 Jul 2009 at 10:44The text was updated successfully, but these errors were encountered: