L3-N0X / spicetify-dj-info

Display BPM, Key and more next to each Song!
MIT License
33 stars 3 forks source link

Cached DJ Info doesn't get updated (Popularity) #16

Open L3-N0X opened 9 months ago

L3-N0X commented 9 months ago

DJ Info which is stored in localStorage won't get updated so Songs you've discovered early keep stuck at 0 Popularity although they currently have much higher Popularity.

Workaround until I find the time to fix this:

(Copy this script and paste it in the developer console in spotify and press Enter)

for (var key in localStorage) {
    if (key.startsWith("djinfo-")) {
      localStorage.removeItem(key);
    }
  }