no message

This commit is contained in:
kuaifan 2026-01-16 03:04:32 +08:00
parent 9234fe3ed1
commit 4ebbb387ee
2 changed files with 5 additions and 2 deletions

View File

@ -361,7 +361,8 @@ const $preload = async () => {
if (mainDomain === "public") {
mainDomain = $A.getDomain(await $A.IDBString("cacheServerUrl"))
}
if ($A.getDomain(loadHash) !== mainDomain) {
const loadDomain = $A.getDomain(loadHash)
if (loadDomain !== mainDomain && loadDomain !== window.location.host) {
window.location.href = loadHash;
return;
}

View File

@ -1449,8 +1449,10 @@ export default {
box-shadow: none;
padding: 0 8px;
resize: none;
&:hover {
&:hover,
&:focus {
border-color: transparent;
box-shadow: none;
}
}