mirror of
https://github.com/mahdibland/V2RayAggregator.git
synced 2026-06-03 21:01:49 +08:00
🖍 fix. wrong comparison
This commit is contained in:
parent
0eb5b768b2
commit
9cd64702ef
@ -161,7 +161,7 @@ class subs_function:
|
||||
if country_code in exclude_list_of_countries or name_emoji == emoji['NOWHERE']:
|
||||
excluded_proxies.append(c_proxy)
|
||||
|
||||
return list(filter(lambda c: c["c_clash"] not in excluded_proxies, corresponding_proxies))
|
||||
return list(filter(lambda c: c not in excluded_proxies, corresponding_proxies))
|
||||
|
||||
def fix_proxies_duplication(corresponding_proxies: []):
|
||||
print("\nBefore was " + str(corresponding_proxies.__len__()) + "\n")
|
||||
|
||||
Loading…
Reference in New Issue
Block a user