diff --git a/jsHelper/spicetifyWrapper.js b/jsHelper/spicetifyWrapper.js index e268483fae..5f5678aa8d 100644 --- a/jsHelper/spicetifyWrapper.js +++ b/jsHelper/spicetifyWrapper.js @@ -1521,7 +1521,8 @@ Spicetify.Playbar = (function() { const res = await fetch("https://api.github.com/repos/spicetify/spicetify-cli/releases/latest"); const { tag_name, html_url, body } = await res.json(); const semver = tag_name.slice(1); - const changelog = [...body.matchAll(/\r\n\*\s(.+?)\sin\shttps/g)] + const changelogRawData = body.match(/## What's Changed([\s\S]*?)\r\n\r/)[1] + const changelog = [...changelogRawData.matchAll(/\r\n\*\s(.+?)\sin\shttps/g)] .map(match => { const featureData = match[1].split("@"); const feature = featureData[0];