Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-guides/TRaSH-Guides/commit/a331cebb7b2fffe7d5abadd8860f05645f821a43?style=unified&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
41 additions and
32 deletions
@ -2815,38 +2815,47 @@ That's why I created my own golden rule.
```json
{
"trash_id": "dc98083864ea246d05a42df0d05f81cc",
"name": "x265 (720/1080p)",
"includeCustomFormatWhenRenaming": false,
"specifications": [
{
"name": "720p",
"implementation": "ResolutionSpecification",
"negate": false,
"required": false,
"fields": {
"value": 720
}
},
{
"name": "1080p",
"implementation": "ResolutionSpecification",
"negate": false,
"required": false,
"fields": {
"value": 1080
}
},
{
"name": "x265/HEVC",
"implementation": "ReleaseTitleSpecification",
"negate": false,
"required": true,
"fields": {
"value": "[xh]\\.?265|\\bHEVC(\\b|\\d)"
}
}
]
"trash_id": "dc98083864ea246d05a42df0d05f81cc",
"name": "x265 (720/1080p)",
"includeCustomFormatWhenRenaming": false,
"specifications": [
{
"name": "720p",
"implementation": "ResolutionSpecification",
"negate": false,
"required": false,
"fields": {
"value": 720
}
},
{
"name": "1080p",
"implementation": "ResolutionSpecification",
"negate": false,
"required": false,
"fields": {
"value": 1080
}
},
{
"name": "x265/HEVC",
"implementation": "ReleaseTitleSpecification",
"negate": false,
"required": true,
"fields": {
"value": "[xh][ .]?265|\\bHEVC(\\b|\\d)"
}
},
{
"name": "Quality Group Exeptions",
"implementation": "ReleaseTitleSpecification",
"negate": true,
"required": true,
"fields": {
"value": "-MZABI|-NCmt\\b"
}
}
]
}
```