Add trackers to Config.py for failsafety incase missing trackers..txt file
This commit is contained in:
parent
fedcf9c1c6
commit
e8cf14bcf5
1 changed files with 8 additions and 1 deletions
|
@ -81,7 +81,14 @@ class Config(object):
|
||||||
def createArguments(self):
|
def createArguments(self):
|
||||||
from Crypt import CryptHash
|
from Crypt import CryptHash
|
||||||
access_key_default = CryptHash.random(24, "base64") # Used to allow restrited plugins when multiuser plugin is enabled
|
access_key_default = CryptHash.random(24, "base64") # Used to allow restrited plugins when multiuser plugin is enabled
|
||||||
trackers = []
|
trackers = [
|
||||||
|
"http://open.acgnxtracker.com:80/announce", # DE
|
||||||
|
"http://tracker.bt4g.com:2095/announce", # Cloudflare
|
||||||
|
"http://tracker.files.fm:6969/announce",
|
||||||
|
"http://t.publictracker.xyz:6969/announce",
|
||||||
|
"https://tracker.lilithraws.cf:443/announce",
|
||||||
|
"https://tracker.babico.name.tr:443/announce",
|
||||||
|
]
|
||||||
# Platform specific
|
# Platform specific
|
||||||
if sys.platform.startswith("win"):
|
if sys.platform.startswith("win"):
|
||||||
coffeescript = "type %s | tools\\coffee\\coffee.cmd"
|
coffeescript = "type %s | tools\\coffee\\coffee.cmd"
|
||||||
|
|
Loading…
Reference in a new issue