diff --git a/src/wrapper/standalone/backend/jack.rs b/src/wrapper/standalone/backend/jack.rs index 708ebf1e..2bc0dd35 100644 --- a/src/wrapper/standalone/backend/jack.rs +++ b/src/wrapper/standalone/backend/jack.rs @@ -297,7 +297,8 @@ impl Jack { /// standalone should expose JACK MIDI ports. pub fn new(config: WrapperConfig) -> Result { let audio_io_layout = config.audio_io_layout_or_exit::

(); - let (client, status) = Client::new(P::NAME, ClientOptions::NO_START_SERVER) + let plugin_name = P::NAME.to_lowercase().replace(' ', "_"); + let (client, status) = Client::new(&plugin_name, ClientOptions::NO_START_SERVER) .context("Error while initializing the JACK client")?; if !status.is_empty() { anyhow::bail!("The JACK server returned an error: {status:?}");