Fixed client icon

This commit is contained in:
WolverinDEV 2018-08-12 21:54:05 +02:00
parent d01952fca8
commit 7a9e4b604b

View file

@ -303,10 +303,12 @@ class ClientEntry {
let clicon: string = "";
if(this.properties.client_away) {
icon = "client-away";
} else if(this.properties.client_output_muted) {
} else if(!this.properties.client_output_hardware) {
icon = "client-hardware_output_muted";
} else if(!this.properties.client_input_hardware) {
icon = "client-hardware_input_muted";
} else if(this.properties.client_output_muted) {
icon = "client-output_muted";
} else if(this.properties.client_input_muted) {
icon = "client-input_muted";
} else {