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
The current implementation will always return 0. I think the method should be changed to something like: feed? ? parsed_data['feed']['openSearch$totalResults']['$t'].to_i : 0
The text was updated successfully, but these errors were encountered:
After switching the response format from XML to JSON the totalResults value comes back in a hash like this:
"openSearch$openSearch:totalResults": {"$t": "4215"}
The current implementation will always return 0. I think the method should be changed to something like:
feed? ? parsed_data['feed']['openSearch$totalResults']['$t'].to_i : 0
The text was updated successfully, but these errors were encountered: