Files
Archive/brook/programmable/modules/chatgpt_advanced_voice.tengo
T
2025-01-03 19:34:59 +01:00

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 }
}
}
}
})