We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
TypeError: wayland_client is null
1 parent 57298b4 commit c7af06dCopy full SHA for c7af06d
ddterm/shell/extension.js
@@ -446,7 +446,7 @@ function watch_window(win) {
446
disconnect();
447
448
if (win.get_client_type() === Meta.WindowClientType.WAYLAND) {
449
- if (!wayland_client.owns_window(win))
+ if (wayland_client === null || !wayland_client.owns_window(win))
450
return;
451
} else if (subprocess) {
452
if (win.get_pid().toString() !== subprocess.get_identifier())
0 commit comments