update: 修复寄件二维码

This commit is contained in:
lan
2024-06-06 22:38:20 +08:00
parent 01486e870f
commit 02e8dc451a
19 changed files with 18 additions and 18 deletions
+1 -1
View File
@@ -62,7 +62,7 @@ function renderMarkdown(message: string) {
}
function getQrCodeUrl(code: string) {
return code.toString().startsWith('http') ? code : window.location.origin + '/#/?' +code;
return code.toString().startsWith('http') ? code : window.location.origin + '/#/?code=' +code;
}
</script>