net/zerotier: skip undefined index, closes #698

This commit is contained in:
Franco Fichtner
2018-06-06 18:00:46 +02:00
parent 250f427c55
commit 8d336d2f5a
@@ -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>