From c4104e18cc5f70c6ba6c48f947f72706fecb9e67 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Wed, 7 Jan 2026 01:35:30 +0100 Subject: [PATCH] Test audio node leak fix --- src/sound.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/sound.cpp b/src/sound.cpp index af83b15..af763c8 100644 --- a/src/sound.cpp +++ b/src/sound.cpp @@ -211,6 +211,9 @@ static pa_handle* pa_sound_device_new(const char *server, if(strcmp(device_name, "") == 0) { pa_proplist_sets(proplist, "node.autoconnect", "false"); pa_proplist_sets(proplist, "node.dont-reconnect", "true"); + pa_proplist_sets(proplist, "node.suspend-on-idle", "false"); + pa_proplist_sets(proplist, "node.pause-on-idle", "false"); + pa_proplist_sets(proplist, "node.always-process", "true"); } if (!(p->mainloop = pa_mainloop_new()))