Building and Bug Fixing

This commit is contained in:
Physton
2023-08-20 09:10:05 +08:00
parent 7c6f4d6bc1
commit 4b8a7fec7e
3 changed files with 7 additions and 12 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -78,10 +78,10 @@ export default {
const match = tag.value.match(common.loraRegex)
if (match) {
tag.isLora = true
tag.loraName = match[1]
const loraName = this.loraExists(match[1])
if (loraName !== false) {
tag.loraExists = true
tag.loraName = loraName
}
}
@@ -90,10 +90,10 @@ export default {
const match = tag.value.match(common.lycoRegex)
if (match) {
tag.isLyco = true
tag.lycoName = match[1]
const lycoName = this.lycoExists(match[1])
if (lycoName !== false) {
tag.lycoExists = true
tag.lycoName = lycoName
}
}
}