浏览代码

Perf: no need to check pre-populate sing-box fields

SukkaW 1 年之前
父节点
当前提交
956d98d7dc
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Build/lib/writing-strategy/singbox.ts

+ 1 - 1
Build/lib/writing-strategy/singbox.ts

@@ -53,7 +53,7 @@ export class SingboxSource extends BaseWriteStrategy {
   }
 
   writeDomainSuffix(domain: string): void {
-    (this.singbox.domain_suffix ??= []).push(domain);
+    this.singbox.domain_suffix.push(domain);
   }
 
   writeDomainKeywords(keyword: Set<string>): void {