Skip to content

Commit

Permalink
explicit cast to string to prevent error
Browse files Browse the repository at this point in the history
  • Loading branch information
mkdynamic committed Sep 9, 2012
1 parent 12a4f76 commit 92bec84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/omnicontacts/importer/yahoo.rb
Expand Up @@ -36,7 +36,7 @@ def contacts_req_params access_token, access_token_secret, contacts_path
:oauth_token => access_token,
:oauth_version => OmniContacts::Authorization::OAuth1::OAUTH_VERSION,
:view => "compact",
:count => @max_results
:count => @max_results.to_s
}
contacts_url = "http://#{@contacts_host}#{contacts_path}"
params["oauth_signature"] = oauth_signature("GET", contacts_url, params, access_token_secret)
Expand Down

0 comments on commit 92bec84

Please sign in to comment.