diff --git a/.drone.yml b/.drone.yml index b008093..05d5d89 100644 --- a/.drone.yml +++ b/.drone.yml @@ -65,7 +65,7 @@ steps: CLIENT_ID: from_secret: spotify_client_id CLIENT_SECRET: - from_secret: spotify_client_id + from_secret: spotify_client_secret depends_on: [ build-image-server ] # - name: build-image-script @@ -97,5 +97,5 @@ steps: # CLIENT_ID: # from_secret: spotify_client_id # CLIENT_SECRET: - # from_secret: spotify_client_id + # from_secret: spotify_client_secret # depends_on: [ build-image-script ] \ No newline at end of file diff --git a/callback-server/app.js b/callback-server/app.js index 4fffa71..15990ec 100644 --- a/callback-server/app.js +++ b/callback-server/app.js @@ -9,7 +9,7 @@ const cors = require('cors'); const port = 80 const clientId = process.env.CLIENT_ID; const clientSecret = process.env.CLIENT_SECRET; -const redirectUri = ' https://felixmielcarek.github.io/big-brother/callback/'; +const redirectUri = 'https://felixmielcarek.github.io/big-brother/callback/'; const allowedDomain = [ 'https://felixmielcarek.github.io' ]; //#endregion