Skip to content

Commit

Permalink
fix: solve login issue #95
Browse files Browse the repository at this point in the history
  • Loading branch information
jzelAdmin2006 committed Jun 11, 2024
1 parent 86e28c1 commit c0611d5
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 c0611d5

Please sign in to comment.