From da1cdd3f5b7e267b138a3f917c2e15f62831dd04 Mon Sep 17 00:00:00 2001 From: Liang Ding Date: Thu, 13 Oct 2022 20:18:43 +0800 Subject: [PATCH] =?UTF-8?q?:bug:=20=E5=8F=8D=E9=93=BE=E6=8F=90=E5=8F=8A?= =?UTF-8?q?=E6=8E=92=E5=BA=8F=E5=A4=B1=E6=95=88=20Fix=20https://github.com?= =?UTF-8?q?/siyuan-note/siyuan/issues/6187?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- kernel/api/ref.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/api/ref.go b/kernel/api/ref.go index 78ca99b57..42f8c440a 100644 --- a/kernel/api/ref.go +++ b/kernel/api/ref.go @@ -95,7 +95,7 @@ func getBacklink2(c *gin.Context) { if nil != sortArg { sort, _ = strconv.Atoi(sortArg.(string)) } - mentionSortArg := arg["msort"] + mentionSortArg := arg["mSort"] mentionSort := util.SortModeUpdatedDESC if nil != mentionSortArg { mentionSort, _ = strconv.Atoi(mentionSortArg.(string))