mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 13:17:41 +00:00
Zero-duration connections should still show as ended.
This commit is contained in:
@@ -735,7 +735,7 @@ GuacAdmin.addConnection = function(connection) {
|
||||
// Display record
|
||||
user.textContent = record.username;
|
||||
start.textContent = GuacAdmin.formatDate(record.start);
|
||||
if (record.duration)
|
||||
if (record.duration != null)
|
||||
duration.textContent = GuacAdmin.formatSeconds(record.duration);
|
||||
else
|
||||
duration.textContent = "Active now";
|
||||
|
Reference in New Issue
Block a user