mod_admin_shell: Indicate bi-directional s2s connections

This commit is contained in:
Kim Alvefur 2021-11-10 20:25:37 +01:00
parent 5f93ef8119
commit 7f68cacb79

View file

@ -661,7 +661,8 @@ local available_columns = {
title = "Dir";
width = 3;
key = "direction";
mapper = function (dir)
mapper = function(dir, session)
if session.incoming and session.outgoing then return "<->"; end
if dir == "outgoing" then return "-->"; end
if dir == "incoming" then return "<--"; end
return ""