diff --git a/daemon/HTTPServer.cpp b/daemon/HTTPServer.cpp index 99ed0441..d08b6d20 100644 --- a/daemon/HTTPServer.cpp +++ b/daemon/HTTPServer.cpp @@ -589,8 +589,9 @@ namespace http { s << "SAM Sessions:
\r\n
\r\n"; for (auto& it: sam->GetSessions ()) { + auto& name = it.second->localDestination->GetNickname (); s << ""; - s << it.first << "
\r\n" << std::endl; + s << name << " (" << it.first << ")
\r\n" << std::endl; } }