mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
jack: add another node name fallback
Use the object-path as a fallback name for the node.
This commit is contained in:
parent
4e421e0012
commit
4ffa82b590
1 changed files with 2 additions and 0 deletions
|
|
@ -3746,6 +3746,8 @@ static void registry_event_global(void *data, uint32_t id,
|
||||||
}
|
}
|
||||||
if (str == NULL)
|
if (str == NULL)
|
||||||
str = node_name;
|
str = node_name;
|
||||||
|
if (str == NULL)
|
||||||
|
str = spa_dict_lookup(props, PW_KEY_OBJECT_PATH);
|
||||||
if (str == NULL)
|
if (str == NULL)
|
||||||
str = "node";
|
str = "node";
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue