diff --git a/qr/qrcode.html b/qr/qrcode.html
index ac8da83..d3918b8 100644
--- a/qr/qrcode.html
+++ b/qr/qrcode.html
@@ -32,14 +32,14 @@
var id = GetQueryString("id")
// 不合法id的处理
if(id == null || id.search(/\W+/) != -1 || id.length != 24) {
- window.location.replace("https://qr.lacus.site/qr/410.html");
+ window.location.replace("https://qr.lacus.site/qr/500.html");
}
var data = document.createElement("script");
data.src = `https://qr.lacus.site/data/${id}.js`
var s = document.getElementsByTagName("script")[0];
// 加载失败处理,默认失败时间是2秒
var timer = setTimeout(function(){
- window.location.replace("https://qr.lacus.site/qr/500.html");
+ window.location.replace("https://qr.lacus.site/qr/410.html");
},2000)
data.onload = function(){
clearTimeout(timer)