From 6d9ddaae2f6a7c06b01c4df098acb6508021236e Mon Sep 17 00:00:00 2001 From: Hygna Date: Fri, 7 Oct 2022 17:19:35 +0100 Subject: Added support for fetching invidious i2p instances --- src/instances/get_instances.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src') diff --git a/src/instances/get_instances.py b/src/instances/get_instances.py index 2f3c75dc..b36cf7ab 100644 --- a/src/instances/get_instances.py +++ b/src/instances/get_instances.py @@ -246,6 +246,8 @@ def invidious(): _list['clearnet'].append(instance[1]['uri']) elif instance[1]['type'] == 'onion': _list['tor'].append(instance[1]['uri']) + elif instance[1]['type'] == 'i2p': + _list['i2p'].append(instance[1]['uri']) mightyList[frontend] = _list print(Fore.GREEN + 'Fetched ' + Style.RESET_ALL + name) except Exception: -- cgit 1.4.1