Skip to content

Commit

Permalink
fix: bad url format for production api
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentauger committed Dec 9, 2024
1 parent d4455fd commit 6776b7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Integrations/Orcid/OrcidMemberAPIConnector.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function resolveBaseUrl(): string
return 'https://api.sandbox.orcid.org/v3.0/'.$this->orcid;
}

return 'https://api.orcid.org/v3.0'.$this->orcid;
return 'https://api.orcid.org/v3.0/'.$this->orcid;
}

/**
Expand Down

0 comments on commit 6776b7f

Please sign in to comment.