-
Notifications
You must be signed in to change notification settings - Fork 87
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat/715 revocation list passes assertion id parameter #716
Feat/715 revocation list passes assertion id parameter #716
Conversation
Codecov Report
@@ Coverage Diff @@
## master #716 +/- ##
==========================================
+ Coverage 92.70% 92.78% +0.08%
==========================================
Files 70 71 +1
Lines 1055 1067 +12
Branches 188 189 +1
==========================================
+ Hits 978 990 +12
Misses 73 73
Partials 4 4
Continue to review full report at Codecov.
|
@@ -10,8 +11,7 @@ function appendApiIdentifier (url: string, explorerAPI: ExplorerAPI): string { | |||
throw new Error(`No keyPropertyName defined for explorerAPI ${explorerAPI.serviceName}`); | |||
} | |||
|
|||
const separator = url.includes('?') ? '&' : '?'; | |||
return `${url}${separator}${explorerAPI.keyPropertyName}=${explorerAPI.key}`; | |||
return safelyAppendUrlParameter(url, explorerAPI.keyPropertyName, explorerAPI.key); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
🎉 This PR is included in version 4.4.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
#715