Revert "更新迅雷链接正则,增加 thunderx 支持"

This commit is contained in:
any86 2019-10-25 17:27:41 +08:00 committed by GitHub
parent dd76542b87
commit c241bdbf3f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@ https://any86.github.io/any-rule/
### 迅雷链接 ### 迅雷链接
```javascript ```javascript
/^thunderx?:\/\/[a-zA-Z\d]+=$/ /^thunder:\/\/[a-zA-Z0-9]+=$/
``` ```
### ed2k链接(宽松匹配) ### ed2k链接(宽松匹配)

View File

@ -2,7 +2,7 @@ module.exports = [
{ {
title: '迅雷链接', title: '迅雷链接',
rule: /^thunderx?:\/\/[a-zA-Z\d]+=$/, rule: /^thunder:\/\/[a-zA-Z0-9]+=$/,
examples: ['thunder://QUEsICdtYWduZXQ6P3h0PXVybjpidGloOjBCQTE0RTUxRkUwNjU1RjE0Qzc4NjE4RjY4NDY0QjZFNTEyNjcyOUMnWlo='], examples: ['thunder://QUEsICdtYWduZXQ6P3h0PXVybjpidGloOjBCQTE0RTUxRkUwNjU1RjE0Qzc4NjE4RjY4NDY0QjZFNTEyNjcyOUMnWlo='],
}, },
@ -289,4 +289,4 @@ module.exports = [
rule: /^[^A-Za-z]*$/, rule: /^[^A-Za-z]*$/,
examples: ['你好6啊', '@¥()'] examples: ['你好6啊', '@¥()']
} }
]; ];