diff --git a/crates/muvm/src/guest/x11.rs b/crates/muvm/src/guest/x11.rs index 3caaf09..8141f30 100644 --- a/crates/muvm/src/guest/x11.rs +++ b/crates/muvm/src/guest/x11.rs @@ -65,7 +65,7 @@ where } // Check for the correct host display - if display != host_display.as_bytes() { + if !display.is_empty() && display != host_display.as_bytes() { continue; }