@@ -508,7 +508,8 @@ function checkUpdate() {
});
}
function extractVersionNum(str) {
const match = str.match(/(\\d+\\.\\d+(?:\\.\\d+)?)/);
// 匹配第一个出现的数字版本号
const match = str.match(/(\d+\.\d+(?:\.\d+)?)/);
return match ? match[1] : '0.0.0';
The note is not visible to the blocked user.