Skip to content

Commit 13b10f7

Browse files
hoshinolinaslp
authored andcommitted
x11: Fix XAUTHORITY handling for wildcard DISPLAY
Apparently GNOME does this (empty display field)... Signed-off-by: Asahi Lina <[email protected]>
1 parent 37b0a2b commit 13b10f7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

crates/muvm/src/guest/x11.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ where
6565
}
6666

6767
// Check for the correct host display
68-
if display != host_display.as_bytes() {
68+
if !display.is_empty() && display != host_display.as_bytes() {
6969
continue;
7070
}
7171

0 commit comments

Comments
 (0)