After updating Spicetify I got the following error in my inspector log: Uncaught TypeError: Spicetify.URI.playlistV2URI is not a function. Seems like that function has been removed or?
let [_, app, uid ] = link.pathname.split("/");
let uri;
if (app === "playlist") {
uri = Spicetify.URI.playlistV2URI(uid);
} else return null;