From 3fe6625e16e52feba2c86f9d6e89497663268585 Mon Sep 17 00:00:00 2001 From: JustSong Date: Sun, 16 Apr 2023 20:29:29 +0800 Subject: [PATCH] fix: fix wrong repo url --- web/src/components/OtherSetting.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/components/OtherSetting.js b/web/src/components/OtherSetting.js index d3b80e6..e85f361 100644 --- a/web/src/components/OtherSetting.js +++ b/web/src/components/OtherSetting.js @@ -76,7 +76,7 @@ const OtherSetting = () => { const checkUpdate = async () => { const res = await API.get( - 'https://api.github.com/repos/songquanpeng/gin-template/releases/latest' + 'https://api.github.com/repos/songquanpeng/message-pusher/releases/latest' ); const { tag_name, body } = res.data; if (tag_name === process.env.REACT_APP_VERSION) {