From f4636b357ef43df60364d29eeed9543a4a120d14 Mon Sep 17 00:00:00 2001 From: Liang Ding Date: Thu, 6 Apr 2023 21:59:03 +0800 Subject: [PATCH] :art: Show "What's News" after upgrading https://github.com/siyuan-note/siyuan/issues/7902 --- kernel/api/system.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/api/system.go b/kernel/api/system.go index 02846f0a0..91adbe5f4 100644 --- a/kernel/api/system.go +++ b/kernel/api/system.go @@ -50,7 +50,7 @@ func getChangelog(c *gin.Context) { return } - changelogPath := filepath.Join(changelogsDir, "v"+util.Ver+model.Conf.Lang+".md") + changelogPath := filepath.Join(changelogsDir, "v"+util.Ver+"_"+model.Conf.Lang+".md") if !gulu.File.IsExist(changelogPath) { changelogPath = filepath.Join(changelogsDir, "v"+util.Ver+".md")