mirror of
https://github.com/netbirdio/plugins.git
synced 2026-05-22 18:44:07 -07:00
net/zerotier: skip undefined index, closes #698
This commit is contained in:
@@ -251,7 +251,11 @@ POSSIBILITY OF SUCH DAMAGE.
|
||||
<td>{{ path["expired"] ? 'true' : 'false' }}</td>
|
||||
<td>{{ path["lastReceive"] | e }}</td>
|
||||
<td>{{ path["lastSend"] | e }}</td>
|
||||
<td>{{ path["linkQuality"] | e }}</td>
|
||||
<td>
|
||||
{% if path["linkQuality"] is defined %}
|
||||
{{ path["linkQuality"] | e }}
|
||||
{% endif %}
|
||||
<td>
|
||||
<td>{{ path["preferred"] | e }}</td>
|
||||
<td>{{ path["trustedPathId"] | e }}</td>
|
||||
</tr>
|
||||
|
||||
Reference in New Issue
Block a user