From ff7e1a90a88044931d4295b578fbe6e410021cdf Mon Sep 17 00:00:00 2001 From: Nathan Monfils Date: Fri, 24 Oct 2025 14:48:09 +0200 Subject: [PATCH] Fix: Make portals.conf fallback (Fixes #9144) --- kittens/desktop_ui/portal.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kittens/desktop_ui/portal.go b/kittens/desktop_ui/portal.go index 50f840d39..9f010906e 100644 --- a/kittens/desktop_ui/portal.go +++ b/kittens/desktop_ui/portal.go @@ -359,7 +359,7 @@ func patch_portals_conf(text []byte) []byte { in_preferred = sl == "[preferred]" lines = append(lines, line) for _, iface := range AllPortalInterfaces() { - lines = append(lines, iface+"=kitty") + lines = append(lines, iface+"=kitty;*") } patched = true } else if in_preferred { @@ -380,7 +380,7 @@ func patch_portals_conf(text []byte) []byte { // the file was empty or did not contain a section lines = append(lines, "[preferred]") for _, iface := range AllPortalInterfaces() { - lines = append(lines, iface+"=kitty") + lines = append(lines, iface+"=kitty;*") } }