mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
don't attempt to connect to empty remote name
Fixes jconvolver startup. See #744
This commit is contained in:
parent
81ebc33b57
commit
7053936ffd
4 changed files with 6 additions and 6 deletions
|
|
@ -1217,7 +1217,7 @@ SND_CTL_PLUGIN_DEFINE_FUNC(pipewire)
|
|||
}
|
||||
|
||||
str = getenv("PIPEWIRE_REMOTE");
|
||||
if (str != NULL)
|
||||
if (str != NULL && str[0] != '\0')
|
||||
server = str;
|
||||
|
||||
if (fallback_name && name && !strcmp(name, fallback_name))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue