diff options
author | xykg1tbi4u6c6tj1 <107795501+xykg1tbi4u6c6tj1@users.noreply.github.com> | 2022-06-19 11:15:20 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-19 11:15:20 +0000 |
commit | 7a6731b4c989557d7da99907f697030f155e1737 (patch) | |
tree | 0404312d3b4a5447003a99650750879a18fea756 /src | |
parent | Bump version => 2.2.0 (diff) | |
download | libredirect-7a6731b4c989557d7da99907f697030f155e1737.zip |
Update wikiless function in get_instances.py
Diffstat (limited to 'src')
-rw-r--r-- | src/instances/get_instances.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/instances/get_instances.py b/src/instances/get_instances.py index 7fa120c5..5f56dddb 100644 --- a/src/instances/get_instances.py +++ b/src/instances/get_instances.py @@ -216,12 +216,12 @@ def wikiless(): wikilessList['tor'] = [] wikilessList['i2p'] = [] for item in rJson: - if item.endswith('.onion'): - wikilessList['tor'].append('http://' + item) - elif item.endswith('.i2p'): - wikilessList['i2p'].append('http://' + item) - else: - wikilessList['normal'].append('https://' + item) + if 'url' in item: + wikilessList['normal'].append(item['url']) + if 'onion' in item: + wikilessList['onion'].append(item['onion']) + if 'i2p' in item: + wikilessList['i2p'].append(item['i2p']) mightyList['wikiless'] = wikilessList print(Fore.GREEN + 'Fetched ' + Style.RESET_ALL + 'Wikiless') |