mirror of
https://github.com/v2fly/domain-list-community.git
synced 2026-03-30 23:36:12 +07:00
Compare commits
10 Commits
2026012012
...
2026012214
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
614a880a55 | ||
|
|
676832d14a | ||
|
|
a2f08a142c | ||
|
|
2359ad7f8e | ||
|
|
330592feff | ||
|
|
f44fbc801d | ||
|
|
03c5e05305 | ||
|
|
bd21f84381 | ||
|
|
912c689da3 | ||
|
|
d1addde6f7 |
45
README.md
45
README.md
@@ -11,6 +11,12 @@ This project is not opinionated. In other words, it does NOT endorse, claim or i
|
|||||||
- **dlc.dat**:[https://github.com/v2fly/domain-list-community/releases/latest/download/dlc.dat](https://github.com/v2fly/domain-list-community/releases/latest/download/dlc.dat)
|
- **dlc.dat**:[https://github.com/v2fly/domain-list-community/releases/latest/download/dlc.dat](https://github.com/v2fly/domain-list-community/releases/latest/download/dlc.dat)
|
||||||
- **dlc.dat.sha256sum**:[https://github.com/v2fly/domain-list-community/releases/latest/download/dlc.dat.sha256sum](https://github.com/v2fly/domain-list-community/releases/latest/download/dlc.dat.sha256sum)
|
- **dlc.dat.sha256sum**:[https://github.com/v2fly/domain-list-community/releases/latest/download/dlc.dat.sha256sum](https://github.com/v2fly/domain-list-community/releases/latest/download/dlc.dat.sha256sum)
|
||||||
|
|
||||||
|
## Notice
|
||||||
|
|
||||||
|
Rules with `@!cn` attribute has been cast out from cn lists. `geosite:geolocation-cn@!cn` is no longer available. Check [#390](https://github.com/v2fly/domain-list-community/issues/390), [#3119](https://github.com/v2fly/domain-list-community/pull/3119) and [#3198](https://github.com/v2fly/domain-list-community/pull/3198) for more information.
|
||||||
|
|
||||||
|
Please report if you have any problems or questions.
|
||||||
|
|
||||||
## Usage example
|
## Usage example
|
||||||
|
|
||||||
Each file in the `data` directory can be used as a rule in this format: `geosite:filename`.
|
Each file in the `data` directory can be used as a rule in this format: `geosite:filename`.
|
||||||
@@ -85,38 +91,45 @@ All data are under `data` directory. Each file in the directory represents a sub
|
|||||||
# comments
|
# comments
|
||||||
include:another-file
|
include:another-file
|
||||||
domain:google.com @attr1 @attr2
|
domain:google.com @attr1 @attr2
|
||||||
|
full:analytics.google.com @ads
|
||||||
keyword:google
|
keyword:google
|
||||||
regexp:www\.google\.com$
|
regexp:^odd[1-7]\.example\.org(\.[a-z]{2})?$
|
||||||
full:www.google.com
|
|
||||||
```
|
```
|
||||||
|
|
||||||
**Syntax:**
|
**Syntax:**
|
||||||
|
|
||||||
|
> [!NOTE]
|
||||||
|
> Adding new `regexp` and `keyword` rules is discouraged because it is easy to use them incorrectly, and proxy software cannot efficiently match these types of rules.
|
||||||
|
|
||||||
|
> [!NOTE]
|
||||||
> The following types of rules are **NOT** fully compatible with the ones that defined by user in V2Ray config file. Do **Not** copy and paste directly.
|
> The following types of rules are **NOT** fully compatible with the ones that defined by user in V2Ray config file. Do **Not** copy and paste directly.
|
||||||
|
|
||||||
- Comment begins with `#`. It may begin anywhere in the file. The content in the line after `#` is treated as comment and ignored in production.
|
- Comment begins with `#`. It may begin anywhere in the file. The content in the line after `#` is treated as comment and ignored in production.
|
||||||
- Inclusion begins with `include:`, followed by the file name of an existing file in the same directory.
|
|
||||||
- Subdomain begins with `domain:`, followed by a valid domain name. The prefix `domain:` may be omitted.
|
- Subdomain begins with `domain:`, followed by a valid domain name. The prefix `domain:` may be omitted.
|
||||||
- Keyword begins with `keyword:`, followed by a string.
|
|
||||||
- Regular expression begins with `regexp:`, followed by a valid regular expression (per Golang's standard).
|
|
||||||
- Full domain begins with `full:`, followed by a complete and valid domain name.
|
- Full domain begins with `full:`, followed by a complete and valid domain name.
|
||||||
- Domains (including `domain`, `keyword`, `regexp` and `full`) may have one or more attributes. Each attribute begins with `@` and followed by the name of the attribute.
|
- Keyword begins with `keyword:`, followed by a substring of a valid domain name.
|
||||||
|
- Regular expression begins with `regexp:`, followed by a valid regular expression (per Golang's standard).
|
||||||
> **Note:** Adding new `regexp` and `keyword` rules is discouraged because it is easy to use them incorrectly, and proxy software cannot efficiently match these types of rules.
|
- Domain rules (including `domain`, `full`, `keyword`, and `regexp`) may have none, one or more attributes. Each attribute begins with `@` and followed by the name of the attribute. Attributes will remain available in final lists and `dlc.dat`.
|
||||||
|
- Domain rules may have none, one or more affiliations, which additionally adds the domain rule into the affiliated target list. Each affiliation begins with `&` and followed by the name of the target list (nomatter whether the target has a dedicated file in data path). This is a method for data management, and will not remain in the final lists or `dlc.dat`.
|
||||||
|
- Inclusion begins with `include:`, followed by the name of another valid domain list. A simple `include:listb` in file `lista` means adding all domain rules of `listb` into `lista`. Inclusions with attributes stands for selective inclusion. `include:listb @attr1 @-attr2` means only adding those domain rules *with* `@attr1` **and** *without* `@attr2`. This is a special type for data management, and will not remain in the final lists or `dlc.dat`.
|
||||||
|
|
||||||
## How it works
|
## How it works
|
||||||
|
|
||||||
The entire `data` directory will be built into an external `geosite` file for Project V. Each file in the directory represents a section in the generated file.
|
The entire `data` directory will be built into an external `geosite` file for Project V. Each file in the directory represents a section in the generated file.
|
||||||
|
|
||||||
To generate a section:
|
**General steps:**
|
||||||
|
|
||||||
1. Remove all the comments in the file.
|
1. Read files in the data path (ignore all comments and empty lines).
|
||||||
2. Replace `include:` lines with the actual content of the file.
|
2. Parse and resolve source data, turn affiliations and inclusions into actual domain rules in proper lists.
|
||||||
3. Omit all empty lines.
|
3. Deduplicate and sort rules in every list.
|
||||||
4. Generate each `domain:` line into a [sub-domain routing rule](https://github.com/v2fly/v2ray-core/blob/master/app/router/routercommon/common.proto#L21).
|
4. Export desired plain text lists.
|
||||||
5. Generate each `full:` line into a [full domain routing rule](https://github.com/v2fly/v2ray-core/blob/master/app/router/routercommon/common.proto#L23).
|
5. Generate `dlc.dat`:
|
||||||
6. Generate each `keyword:` line into a [plain domain routing rule](https://github.com/v2fly/v2ray-core/blob/master/app/router/routercommon/common.proto#L17).
|
- turn each `domain:` line into a [sub-domain routing rule](https://github.com/v2fly/v2ray-core/blob/master/app/router/routercommon/common.proto#L21).
|
||||||
7. Generate each `regexp:` line into a [regex domain routing rule](https://github.com/v2fly/v2ray-core/blob/master/app/router/routercommon/common.proto#L19).
|
- turn each `full:` line into a [full domain routing rule](https://github.com/v2fly/v2ray-core/blob/master/app/router/routercommon/common.proto#L23).
|
||||||
|
- turn each `keyword:` line into a [plain domain routing rule](https://github.com/v2fly/v2ray-core/blob/master/app/router/routercommon/common.proto#L17).
|
||||||
|
- turn each `regexp:` line into a [regex domain routing rule](https://github.com/v2fly/v2ray-core/blob/master/app/router/routercommon/common.proto#L19).
|
||||||
|
|
||||||
|
Read [main.go](./main.go) for details.
|
||||||
|
|
||||||
## How to organize domains
|
## How to organize domains
|
||||||
|
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
include:boc
|
include:boc @-!cn
|
||||||
include:ccb
|
include:ccb @-!cn
|
||||||
include:citic
|
include:citic @-!cn
|
||||||
include:cmb
|
include:cmb @-!cn
|
||||||
include:hsbc-cn
|
include:hsbc-cn
|
||||||
include:icbc
|
include:icbc @-!cn
|
||||||
include:unionpay
|
include:unionpay
|
||||||
|
|
||||||
abchina.com
|
abchina.com
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ include:apipost
|
|||||||
include:baltamatica
|
include:baltamatica
|
||||||
include:cnblogs
|
include:cnblogs
|
||||||
include:csdn
|
include:csdn
|
||||||
include:deepin
|
include:deepin @-!cn
|
||||||
include:gitee
|
include:gitee
|
||||||
include:goproxy
|
include:goproxy
|
||||||
include:huawei-dev
|
include:huawei-dev
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ include:aamgame
|
|||||||
include:acfun
|
include:acfun
|
||||||
include:acplay
|
include:acplay
|
||||||
include:bestv
|
include:bestv
|
||||||
include:bilibili
|
include:bilibili @-!cn
|
||||||
include:ciweimao
|
include:ciweimao
|
||||||
include:dedao
|
include:dedao
|
||||||
include:douyin
|
include:douyin
|
||||||
@@ -18,7 +18,7 @@ include:gamersky
|
|||||||
include:gitv
|
include:gitv
|
||||||
include:hunantv
|
include:hunantv
|
||||||
include:huya
|
include:huya
|
||||||
include:iqiyi
|
include:iqiyi @-!cn
|
||||||
include:ku6
|
include:ku6
|
||||||
include:kuaikan
|
include:kuaikan
|
||||||
include:kuaishou
|
include:kuaishou
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ include:curseforge
|
|||||||
include:cygames
|
include:cygames
|
||||||
include:ea
|
include:ea
|
||||||
include:embark
|
include:embark
|
||||||
|
include:eneba
|
||||||
include:epicgames
|
include:epicgames
|
||||||
include:escapefromtarkov
|
include:escapefromtarkov
|
||||||
include:faceit
|
include:faceit
|
||||||
|
|||||||
@@ -9,13 +9,15 @@ include:mihoyo-cn
|
|||||||
include:tencent-games
|
include:tencent-games
|
||||||
include:tiancity
|
include:tiancity
|
||||||
include:vrzwk
|
include:vrzwk
|
||||||
include:xd
|
include:xd @-!cn
|
||||||
include:yokaverse
|
include:yokaverse
|
||||||
|
|
||||||
# 北京奇客创想科技有限公司
|
# 北京奇客创想科技有限公司
|
||||||
7k7k.com
|
7k7k.com
|
||||||
# 刀锋盒子 皖B2-20190103-4
|
# 刀锋盒子 皖B2-20190103-4
|
||||||
9xgame.com
|
9xgame.com
|
||||||
|
# 韵律谱面研究站 桂ICP备20001846号-3
|
||||||
|
arcaea.cn
|
||||||
# 《异象回声》游戏官网 沪ICP备2023010411号-1
|
# 《异象回声》游戏官网 沪ICP备2023010411号-1
|
||||||
astral-vector.com
|
astral-vector.com
|
||||||
# 九九互动 粤ICP备19068416号
|
# 九九互动 粤ICP备19068416号
|
||||||
|
|||||||
@@ -10,3 +10,6 @@ yctdyy.com
|
|||||||
|
|
||||||
# 南方医科大学深圳医院
|
# 南方医科大学深圳医院
|
||||||
smuszh.com
|
smuszh.com
|
||||||
|
|
||||||
|
# 四川大学华西医院
|
||||||
|
cd120.com
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ include:gracg
|
|||||||
include:hupu
|
include:hupu
|
||||||
include:meipian
|
include:meipian
|
||||||
include:okjike
|
include:okjike
|
||||||
include:sina
|
include:sina @-!cn
|
||||||
include:xiaohongshu
|
include:xiaohongshu
|
||||||
include:yy
|
include:yy
|
||||||
include:zhihu
|
include:zhihu
|
||||||
|
|||||||
2
data/eneba
Normal file
2
data/eneba
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
eneba.com
|
||||||
|
eneba.games
|
||||||
@@ -102,6 +102,8 @@ include:w3schools
|
|||||||
include:zotero
|
include:zotero
|
||||||
|
|
||||||
chemequations.com # 线上化学方程式!
|
chemequations.com # 线上化学方程式!
|
||||||
|
geogebra.org
|
||||||
|
wolframalpha.com
|
||||||
|
|
||||||
# Entertainment & Games & Music & Podcasts & Videos
|
# Entertainment & Games & Music & Podcasts & Videos
|
||||||
include:category-entertainment
|
include:category-entertainment
|
||||||
@@ -300,6 +302,7 @@ include:wikimedia
|
|||||||
|
|
||||||
atwiki.jp
|
atwiki.jp
|
||||||
touhouwiki.net
|
touhouwiki.net
|
||||||
|
wiki.gg
|
||||||
|
|
||||||
# Others
|
# Others
|
||||||
include:avaxhome
|
include:avaxhome
|
||||||
|
|||||||
@@ -38,9 +38,9 @@ include:category-httpdns-cn
|
|||||||
# Bank & Finance & Insurance & Securities
|
# Bank & Finance & Insurance & Securities
|
||||||
include:category-bank-cn
|
include:category-bank-cn
|
||||||
include:category-securities-cn
|
include:category-securities-cn
|
||||||
include:eastmoney
|
include:eastmoney @-!cn
|
||||||
include:everbright
|
include:everbright
|
||||||
include:pingan
|
include:pingan @-!cn
|
||||||
include:taikang
|
include:taikang
|
||||||
|
|
||||||
## 航财通·校园付
|
## 航财通·校园付
|
||||||
@@ -92,11 +92,11 @@ pkoplink.com
|
|||||||
|
|
||||||
# E-commerce
|
# E-commerce
|
||||||
include:58tongcheng
|
include:58tongcheng
|
||||||
include:ctrip
|
include:ctrip @-!cn
|
||||||
include:dangdang
|
include:dangdang
|
||||||
include:dewu
|
include:dewu @-!cn
|
||||||
include:dongjiao
|
include:dongjiao
|
||||||
include:jd
|
include:jd @-!cn
|
||||||
include:lianjia
|
include:lianjia
|
||||||
include:meituan
|
include:meituan
|
||||||
include:miaomiaozhe
|
include:miaomiaozhe
|
||||||
@@ -411,19 +411,19 @@ zhaopin.cn
|
|||||||
# Tech companies & Orginations
|
# Tech companies & Orginations
|
||||||
include:aisiku # 北京艾斯酷科技有限公司
|
include:aisiku # 北京艾斯酷科技有限公司
|
||||||
include:akiko # 秋子酱科技
|
include:akiko # 秋子酱科技
|
||||||
include:alibaba
|
include:alibaba @-!cn
|
||||||
include:baidu
|
include:baidu
|
||||||
include:beisen
|
include:beisen
|
||||||
include:bluepoch
|
include:bluepoch
|
||||||
include:bytedance
|
include:bytedance @-!cn
|
||||||
include:didi
|
include:didi @-!cn
|
||||||
include:dingdatech # 叮哒出行(杭州金通互联科技有限公司)
|
include:dingdatech # 叮哒出行(杭州金通互联科技有限公司)
|
||||||
include:dji
|
include:dji
|
||||||
include:gree
|
include:gree
|
||||||
include:haier
|
include:haier
|
||||||
include:hikvision
|
include:hikvision
|
||||||
include:honor
|
include:honor
|
||||||
include:huawei
|
include:huawei @-!cn
|
||||||
include:hupun # 杭州湖畔网络技术有限公司
|
include:hupun # 杭州湖畔网络技术有限公司
|
||||||
include:iflytek
|
include:iflytek
|
||||||
include:ishumei # 北京数美时代科技有限公司
|
include:ishumei # 北京数美时代科技有限公司
|
||||||
@@ -435,14 +435,14 @@ include:meizu
|
|||||||
include:midea
|
include:midea
|
||||||
include:narwal # 云鲸科技
|
include:narwal # 云鲸科技
|
||||||
include:netease
|
include:netease
|
||||||
include:oppo
|
include:oppo @-!cn
|
||||||
include:qihoo360
|
include:qihoo360
|
||||||
include:sumkoo #北京尚古创新科技有限公司
|
include:sumkoo #北京尚古创新科技有限公司
|
||||||
include:tcl
|
include:tcl
|
||||||
include:tencent
|
include:tencent @-!cn
|
||||||
include:tongfang
|
include:tongfang
|
||||||
include:vivo
|
include:vivo @-!cn
|
||||||
include:xiaomi
|
include:xiaomi @-!cn
|
||||||
include:xunlei
|
include:xunlei
|
||||||
include:youquan # 祐全科技
|
include:youquan # 祐全科技
|
||||||
include:yuanbei # 上海圆贝信息科技有限公司
|
include:yuanbei # 上海圆贝信息科技有限公司
|
||||||
@@ -479,13 +479,20 @@ xsbapp.cn
|
|||||||
|
|
||||||
# Telecommunication
|
# Telecommunication
|
||||||
include:chinabroadnet
|
include:chinabroadnet
|
||||||
include:chinamobile
|
include:chinamobile @-!cn
|
||||||
include:chinatelecom
|
include:chinatelecom @-!cn
|
||||||
include:chinatower
|
include:chinatower
|
||||||
include:chinaunicom
|
include:chinaunicom @-!cn
|
||||||
|
|
||||||
# 在线工具
|
# 在线工具
|
||||||
include:ipip # IPIP ip地理位置数据库
|
## IPIP ip地理位置数据库
|
||||||
|
include:ipip @-!cn
|
||||||
|
|
||||||
|
## 白描
|
||||||
|
baimiao.tech
|
||||||
|
baimiaoapp.com
|
||||||
|
shinescan.tech
|
||||||
|
uzero.cn
|
||||||
|
|
||||||
chaziyu.com # 滇ICP备2024035496号
|
chaziyu.com # 滇ICP备2024035496号
|
||||||
fofa.info # Fofa网站测绘(华顺信安)
|
fofa.info # Fofa网站测绘(华顺信安)
|
||||||
|
|||||||
3
data/okx
3
data/okx
@@ -1,8 +1,9 @@
|
|||||||
okex.com
|
okex.com
|
||||||
okx.com
|
|
||||||
okx-dns.com
|
okx-dns.com
|
||||||
okx-dns1.com
|
okx-dns1.com
|
||||||
okx-dns2.com
|
okx-dns2.com
|
||||||
|
okx.cab
|
||||||
|
okx.com
|
||||||
|
|
||||||
# OKC Browser
|
# OKC Browser
|
||||||
oklink.com @cn
|
oklink.com @cn
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
include:askdiandian
|
include:askdiandian
|
||||||
|
|
||||||
|
rednotecdn.com
|
||||||
xhscdn.com
|
xhscdn.com
|
||||||
xhscdn.net
|
xhscdn.net
|
||||||
xhslink.com
|
xhslink.com
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
include:xiaomi-ads
|
include:xiaomi-ads
|
||||||
include:xiaomi-ai
|
include:xiaomi-ai
|
||||||
|
include:xiaomi-iot
|
||||||
|
|
||||||
mgslb.com
|
mgslb.com
|
||||||
mi-idc.com
|
mi-idc.com
|
||||||
|
|||||||
5
data/xiaomi-iot
Normal file
5
data/xiaomi-iot
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# Xiaomi IoT Services
|
||||||
|
account.xiaomi.com
|
||||||
|
cn-ha.mqtt.io.mi.com
|
||||||
|
ha.api.io.mi.com
|
||||||
|
miot-spec.org
|
||||||
25
main.go
25
main.go
@@ -30,10 +30,10 @@ const (
|
|||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
TypeChecker = regexp.MustCompile(`^(domain|full|keyword|regexp|include)$`)
|
TypeChecker = regexp.MustCompile(`^(domain|full|keyword|regexp|include)$`)
|
||||||
ValueChecker = regexp.MustCompile(`^[a-z0-9!\.-]+$`)
|
DomainChecker = regexp.MustCompile(`^[a-z0-9\.-]+$`)
|
||||||
AttrChecker = regexp.MustCompile(`^[a-z0-9!-]+$`)
|
AttrChecker = regexp.MustCompile(`^[a-z0-9!-]+$`)
|
||||||
SiteChecker = regexp.MustCompile(`^[A-Z0-9!-]+$`)
|
SiteChecker = regexp.MustCompile(`^[A-Z0-9!-]+$`)
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
@@ -123,6 +123,8 @@ func parseEntry(line string) (Entry, error) {
|
|||||||
entry.Type = strings.ToLower(kv[0])
|
entry.Type = strings.ToLower(kv[0])
|
||||||
if entry.Type == RuleTypeRegexp {
|
if entry.Type == RuleTypeRegexp {
|
||||||
entry.Value = kv[1]
|
entry.Value = kv[1]
|
||||||
|
} else if entry.Type == RuleTypeInclude {
|
||||||
|
entry.Value = strings.ToUpper(kv[1])
|
||||||
} else {
|
} else {
|
||||||
entry.Value = strings.ToLower(kv[1])
|
entry.Value = strings.ToLower(kv[1])
|
||||||
}
|
}
|
||||||
@@ -133,12 +135,19 @@ func parseEntry(line string) (Entry, error) {
|
|||||||
if !TypeChecker.MatchString(entry.Type) {
|
if !TypeChecker.MatchString(entry.Type) {
|
||||||
return entry, fmt.Errorf("invalid type: %s", entry.Type)
|
return entry, fmt.Errorf("invalid type: %s", entry.Type)
|
||||||
}
|
}
|
||||||
if entry.Type == RuleTypeRegexp {
|
switch entry.Type {
|
||||||
|
case RuleTypeRegexp:
|
||||||
if _, err := regexp.Compile(entry.Value); err != nil {
|
if _, err := regexp.Compile(entry.Value); err != nil {
|
||||||
return entry, fmt.Errorf("invalid regexp: %s", entry.Value)
|
return entry, fmt.Errorf("invalid regexp: %s", entry.Value)
|
||||||
}
|
}
|
||||||
} else if !ValueChecker.MatchString(entry.Value) {
|
case RuleTypeInclude:
|
||||||
return entry, fmt.Errorf("invalid value: %s", entry.Value)
|
if !SiteChecker.MatchString(entry.Value) {
|
||||||
|
return entry, fmt.Errorf("invalid included list name: %s", entry.Value)
|
||||||
|
}
|
||||||
|
default: // `full`, `domain` and `keyword` are all (parts of) domains
|
||||||
|
if !DomainChecker.MatchString(entry.Value) {
|
||||||
|
return entry, fmt.Errorf("invalid domain: %s", entry.Value)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Parse/Check attributes and affiliations
|
// Parse/Check attributes and affiliations
|
||||||
@@ -214,7 +223,7 @@ func parseList(refName string, refList []*Entry) error {
|
|||||||
if len(entry.Affs) != 0 {
|
if len(entry.Affs) != 0 {
|
||||||
return fmt.Errorf("affiliation is not allowed for include:%s", entry.Value)
|
return fmt.Errorf("affiliation is not allowed for include:%s", entry.Value)
|
||||||
}
|
}
|
||||||
inc := &Inclusion{Source: strings.ToUpper(entry.Value)}
|
inc := &Inclusion{Source: entry.Value}
|
||||||
for _, attr := range entry.Attrs {
|
for _, attr := range entry.Attrs {
|
||||||
if strings.HasPrefix(attr, "-") {
|
if strings.HasPrefix(attr, "-") {
|
||||||
inc.BanAttrs = append(inc.BanAttrs, attr[1:]) // Trim attribute prefix `-` character
|
inc.BanAttrs = append(inc.BanAttrs, attr[1:]) // Trim attribute prefix `-` character
|
||||||
|
|||||||
Reference in New Issue
Block a user