internal/pipewire: move Core wrapper methods under Core
All checks were successful
Test / Create distribution (push) Successful in 37s
Test / Sandbox (push) Successful in 2m35s
Test / Hpkg (push) Successful in 4m31s
Test / Sandbox (race detector) (push) Successful in 4m37s
Test / Hakurei (race detector) (push) Successful in 5m31s
Test / Hakurei (push) Successful in 2m30s
Test / Flake checks (push) Successful in 1m42s

These do not belong under Context, and is an early implementation limitation that carried over.

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
2025-12-14 05:35:27 +09:00
parent de0467a65e
commit ffbec828e1
2 changed files with 10 additions and 10 deletions

View File

@@ -122,7 +122,7 @@ func New(conn Conn, props SPADict) (*Context, error) {
}
ctx.nextId = Int(len(ctx.proxy))
if err := ctx.coreHello(); err != nil {
if err := ctx.core.hello(); err != nil {
return nil, err
}
if err := ctx.clientUpdateProperties(props); err != nil {