mirror of
https://gitlab.freedesktop.org/pipewire/wireplumber.git
synced 2025-12-27 10:00:05 +01:00
apply-routes.lua: Always set save=false when applying routes
When applying new routes, we always want the save property to be false because it is done by WirePlumber (not the user). WirePlumber applies routes when restoring them from the state file, or when finding the best routes after the profile has changed. In both cases, it does not make sense to set save=true.
This commit is contained in:
parent
ea6f24e861
commit
5060b27a9e
1 changed files with 1 additions and 1 deletions
|
|
@ -83,7 +83,7 @@ AsyncEventHook {
|
|||
index = route_info.index,
|
||||
device = device_id,
|
||||
props = Pod.Object (props),
|
||||
save = route_info.save,
|
||||
save = false,
|
||||
}
|
||||
|
||||
log:debug (param,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue