From 790023f5efac40f6e7c428d01cd754a984cdacd1 Mon Sep 17 00:00:00 2001 From: rcpeters Date: Wed, 25 Jul 2018 10:45:03 -0700 Subject: [PATCH] change to using https --- local_modules/orcid-oauth-util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/local_modules/orcid-oauth-util.js b/local_modules/orcid-oauth-util.js index 54f8ddc..530ccb7 100644 --- a/local_modules/orcid-oauth-util.js +++ b/local_modules/orcid-oauth-util.js @@ -23,7 +23,7 @@ OcridOAuthUtil.prototype.getAuthUrl = function(redirect_uri, state) { } OcridOAuthUtil.prototype.fullOrcid = function(orcidId) { - return this.ORCID_URL.replace('https://', 'http://') + '/' + orcidId; + return this.ORCID_URL + '/' + orcidId; }