Skip to content

Commit

Permalink
the search API should use SSL as configured by the user too
Browse files Browse the repository at this point in the history
  • Loading branch information
robUx4 committed Jul 19, 2011
1 parent f2eb4e9 commit 56e4f5c
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -470,6 +470,9 @@ private void fixRestBaseURL() {
if (DEFAULT_OAUTH_REQUEST_TOKEN_URL.equals(fixURL(false, oAuthRequestTokenURL))) {
this.oAuthRequestTokenURL = fixURL(useSSL, oAuthRequestTokenURL);
}
if (DEFAULT_SEARCH_BASE_URL.equals(fixURL(false, searchBaseURL))) {
this.searchBaseURL = fixURL(useSSL, searchBaseURL);
}
}

public String getSearchBaseURL() {
Expand Down

0 comments on commit 56e4f5c

Please sign in to comment.