mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
diagnosis: we can't yield an ERROR if there's no IPv6, otherwise that blocks all subsequent network-related diagnoser because of the dependency system ...
This commit is contained in:
parent
971b1b044e
commit
ade92e431d
1 changed files with 1 additions and 1 deletions
|
@ -140,7 +140,7 @@ class MyDiagnoser(Diagnoser):
|
|||
status="SUCCESS"
|
||||
if ipv6
|
||||
else "ERROR"
|
||||
if is_ipvx_important(6)
|
||||
if settings_get("misc.network.dns_exposure") == "ipv6"
|
||||
else "WARNING",
|
||||
summary="diagnosis_ip_connected_ipv6" if ipv6 else "diagnosis_ip_no_ipv6",
|
||||
details=["diagnosis_ip_global", "diagnosis_ip_local"]
|
||||
|
|
Loading…
Add table
Reference in a new issue