diff options
| author | Ophestra <cat@gensokyo.uk> | 2025-12-06 20:59:41 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2025-12-06 21:03:21 +0900 |
| commit | f44923da296720360e359016ac83c6a56deeb0f1 (patch) | |
| tree | c82fa1006fa58da79eaf45beeafb926d26c06ab8 /internal/pipewire/core.go | |
| parent | 5e7861bb0063c3f3648e314d3be7d5189c5bc656 (diff) | |
internal/pipewire: post-sync cleanup functions
This makes it easier to handle resources who only needs to stay alive before the next sync.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/pipewire/core.go')
| -rw-r--r-- | internal/pipewire/core.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/internal/pipewire/core.go b/internal/pipewire/core.go index 3b67a50d..4642bdba 100644 --- a/internal/pipewire/core.go +++ b/internal/pipewire/core.go @@ -372,7 +372,8 @@ func (core *Core) Sync() error { return err } } - return core.ctx.cloneProxyErrors() + + return core.ctx.doSyncComplete() } // The CorePong message is sent from the client to the server when the server emits the Ping event. |
