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);
}
}
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)