wpctl: Don't stop setting volume by PID if a node does not support volume

This makes sure the volume is applied to all nodes that support volume for a PID.
This commit is contained in:
Julian Bouzas 2026-05-04 14:12:44 -04:00
parent 7fa44ef8d0
commit 67cc35f4f7

View file

@ -1176,7 +1176,8 @@ do_set_volume_cb (const GValue *node_val, GValue *ret, gpointer data)
{
WpCtl * self = data;
WpPipewireObject *node = g_value_get_object (node_val);
return do_set_volume (self, node);
do_set_volume (self, node);
return TRUE;
}
static void