media-session: put match rules in "" to avoid confusion

This commit is contained in:
Wim Taymans 2021-02-05 17:34:30 +01:00
parent 11900bbd67
commit ce7a8c9538
3 changed files with 9 additions and 9 deletions

View file

@ -12,7 +12,7 @@ rules = [
matches = [
{
# this matches all cards
device.name = ~alsa_card.*
device.name = "~alsa_card.*"
}
]
actions = {
@ -34,11 +34,11 @@ rules = [
matches = [
{
# matches all sinks
node.name = ~alsa_input.*
node.name = "~alsa_input.*"
}
{
# matches all sources
node.name = ~alsa_output.*
node.name = "~alsa_output.*"
}
]
actions = {

View file

@ -27,7 +27,7 @@ rules = [
matches = [
{
# this matches all cards
device.name = ~bluez_card.*
device.name = "~bluez_card.*"
}
]
actions = {
@ -41,11 +41,11 @@ rules = [
matches = [
{
# matches all sinks
node.name = ~bluez_input.*
node.name = "~bluez_input.*"
}
{
# matches all sources
node.name = ~bluez_output.*
node.name = "~bluez_output.*"
}
]
actions = {

View file

@ -11,7 +11,7 @@ rules = [
matches = [
{
# this matches all devices
device.name = ~v4l2_device.*
device.name = "~v4l2_device.*"
}
]
actions = {
@ -25,11 +25,11 @@ rules = [
matches = [
{
# matches all sinks
node.name = ~v4l2_input.*
node.name = "~v4l2_input.*"
}
{
# matches all sources
node.name = ~v4l2_output.*
node.name = "~v4l2_output.*"
}
]
actions = {