Skip to content

Commit

Permalink
Merge pull request #100 from jzelAdmin2006/main
Browse files Browse the repository at this point in the history
fix: solve login issue #95
  • Loading branch information
trungvose authored Jul 6, 2024
2 parents bdc3e0a + c0611d5 commit e076bb1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export class SpotifyAuthorize {
const params = new URLSearchParams({
client_id: this.CLIENT_ID,
redirect_uri: `${window.location.origin}/`,
scope: encodeURIComponent(this.SCOPES.join(' ')),
scope: this.SCOPES.join(' '),
response_type: 'token'
});
return `${this.SPOTIFY_AUTHORIZE_URL}?${params.toString()}`;
Expand Down

0 comments on commit e076bb1

Please sign in to comment.