Merge pull request #322 from statping-ng/rebase-pr-170

Fix Custom OAuth scopes parameter
pull/1118/head
Willy 2025-01-08 12:39:37 +01:00 committed by GitHub
commit 755f0a0149
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@
} }
scopes.push(this.oauth.custom_scopes.split(",")) scopes.push(this.oauth.custom_scopes.split(","))
if (scopes.length !== 0) { if (scopes.length !== 0) {
return "&scopes="+scopes.join(",") return "&scope="+scopes.join(" ")
} }
return "" return ""
}, },