mirror of
https://github.com/bolucat/Archive.git
synced 2026-04-23 00:17:16 +08:00
15 lines
343 B
Plaintext
15 lines
343 B
Plaintext
// Ignore fake DNS for ChatGPT Advanced Voice
|
|
modules = append(modules, {
|
|
dnsquery: func(m) {
|
|
text := import("text")
|
|
l := [
|
|
"livekit.cloud"
|
|
]
|
|
for v in l {
|
|
if m.domain == v || text.has_suffix(m.domain, "."+v) {
|
|
return { system: true }
|
|
}
|
|
}
|
|
}
|
|
})
|