diff --git a/README.md b/README.md index e870fac..eee0884 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ This app lets you find duplicates in your Spotify playlists. ## Usage When using the application, you should first login with Spotify. The app only requests access to your private and collaborative playlists. -After login, you can get all the playlists by clicking the `Get playlists` button. It may take a while if you have many ones. +After login, you can get all the playlists by clicking the `Refresh` button. It may take a while if you have many ones. After playlists are loaded, you can click on any name to launch duplicates finding. This may also take a while as Spotify only allows me to retrieve tracks 100 by 100. diff --git a/app.js b/app.js index 163fbfe..4cb22b7 100644 --- a/app.js +++ b/app.js @@ -142,7 +142,7 @@ app.get('/get_playlists', function (req, res) { json: true }; - getAllPages(authOptions, [], function(data) { + getAllPages(authOptions, [], function (data) { res.send({ 'data': data }); diff --git a/public/index.html b/public/index.html index 99ad836..7b02799 100644 --- a/public/index.html +++ b/public/index.html @@ -3,40 +3,36 @@