mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2025-01-26 05:27:29 +02:00
[Web] Fix null ua in debug.js - fixes #2615
This commit is contained in:
parent
45359bb6cf
commit
5bb23a2664
@ -524,6 +524,9 @@ jQuery(function($){
|
||||
});
|
||||
} else if (table == 'autodiscover_log') {
|
||||
$.each(data, function (i, item) {
|
||||
if (item.ua == null) {
|
||||
item.ua = 'unknown';
|
||||
}
|
||||
item.ua = '<span style="font-size:small">' + item.ua + '</span>';
|
||||
if (item.service == "activesync") {
|
||||
item.service = '<span class="label label-info">ActiveSync</span>';
|
||||
|
Loading…
x
Reference in New Issue
Block a user