From 7422fb075c51f0b0432cc4be20de2e3c794c24a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8F=B9=E5=8F=B7=E5=A4=A7=E5=B8=9D?= <162813557+th-dd@users.noreply.github.com> Date: Sat, 11 Jul 2026 22:46:16 +0800 Subject: [PATCH] fix(platform): correct tutorial links for satori and mattermost (#9205) --- dashboard/src/utils/platformUtils.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dashboard/src/utils/platformUtils.js b/dashboard/src/utils/platformUtils.js index d69af9237..1b64311b1 100644 --- a/dashboard/src/utils/platformUtils.js +++ b/dashboard/src/utils/platformUtils.js @@ -66,10 +66,11 @@ export function getTutorialLink(platformType) { "slack": "https://docs.astrbot.app/platform/slack.html", "kook": "https://docs.astrbot.app/platform/kook.html", "vocechat": "https://docs.astrbot.app/platform/vocechat.html", - "satori": "https://docs.astrbot.app/platform/satori/llonebot.html", + "satori": "https://docs.astrbot.app/platform/satori/guide.html", "misskey": "https://docs.astrbot.app/platform/misskey.html", "line": "https://docs.astrbot.app/platform/line.html", "matrix": "https://docs.astrbot.app/platform/matrix.html", + "mattermost": "https://docs.astrbot.app/platform/mattermost.html", } return tutorialMap[platformType] || "https://docs.astrbot.app"; }