Fix webui preview changelog url

This commit is contained in:
schroda
2025-10-15 00:38:36 +02:00
parent 588b6fc68b
commit 17a811cd39

View File

@@ -69,7 +69,7 @@ export const WebUIUpdateChecker = () => {
const changelogUrl =
updateStatus.info?.channel === WebUiChannel.Stable
? 'https://github.com/Suwayomi/Suwayomi-WebUI/releases/latest'
: 'https://github.com/Suwayomi/Suwayomi-WebUI/blob/28a2b44e940cad6736fb53dd207cd420fcf627d3/CHANGELOG.md';
: 'https://github.com/Suwayomi/Suwayomi-WebUI/blob/master/CHANGELOG.md';
const newVersion = aboutWebUI?.tag;
const isSameAsCurrent = !newVersion || !webUIVersion || webUIVersion === newVersion;