We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fd0c29 commit fb65d13Copy full SHA for fb65d13
1 file changed
china.js
@@ -464,6 +464,12 @@ async function get_todo() {
464
l = l.concat(s.trim().split("\n").map(v => JSON.parse(v)).filter(v => v.action == "PROXY").map(v => get_domain(v.content)).filter(v => v))
465
}
466
467
+ if (await exists(os.homedir() + "/Library/Group Containers/FZS65P7GSQ.brook/b.log")) {
468
+ var s = await fs.readFile(os.homedir() + "/Library/Group Containers/FZS65P7GSQ.brook/b.log", { encoding: 'utf8' })
469
+ if (s && s.trim()) {
470
+ l = l.concat(s.trim().split("\n").map(v => JSON.parse(v)).filter(v => v.action == "PROXY").map(v => get_domain(v.content)).filter(v => v))
471
+ }
472
473
if (await exists(os.homedir() + "/.b.log")) {
474
var s = await fs.readFile(os.homedir() + "/.b.log", { encoding: 'utf8' })
475
if (s && s.trim()) {
0 commit comments