diff options
| author | Ophestra Umiker <cat@ophivana.moe> | 2024-10-15 02:15:55 +0900 |
|---|---|---|
| committer | Ophestra Umiker <cat@ophivana.moe> | 2024-10-15 02:15:55 +0900 |
| commit | 2faf510146733c28a5dbc3245175700abcf4f966 (patch) | |
| tree | 707b5fec5d210c19123205969731837b780e318d /internal/app/share.pulse.go | |
| parent | a0db19b9ad7def33eacdfc23d462604dce3af3bb (diff) | |
helper/bwrap: ordered filesystem args
The argument builder was written based on the incorrect assumption that bwrap arguments are unordered. The argument builder is replaced in this commit to correct that mistake.
Signed-off-by: Ophestra Umiker <cat@ophivana.moe>
Diffstat (limited to 'internal/app/share.pulse.go')
| -rw-r--r-- | internal/app/share.pulse.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/app/share.pulse.go b/internal/app/share.pulse.go index 39e6fc82..df26b16c 100644 --- a/internal/app/share.pulse.go +++ b/internal/app/share.pulse.go @@ -65,7 +65,7 @@ func (seal *appSeal) sharePulse() error { psi := path.Join(seal.shareLocal, "pulse") p := path.Join(seal.sys.runtime, "pulse", "native") seal.sys.link(ps, psi) - seal.sys.bind(psi, p, true) + seal.sys.bwrap.Bind(psi, p) seal.sys.setEnv(pulseServer, "unix:"+p) // publish current user's pulse cookie for target user |
