From e915dd0d95d6bc407e4659bfadcef1468c8434f4 Mon Sep 17 00:00:00 2001 From: springstan <46536646+springstan@users.noreply.github.com> Date: Tue, 19 Nov 2019 16:28:12 +0100 Subject: [PATCH] Pulseaudio: Changed default port from 4712 to 4713 (#28857) --- homeassistant/components/pulseaudio_loopback/switch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/pulseaudio_loopback/switch.py b/homeassistant/components/pulseaudio_loopback/switch.py index b3bddbf1263..618d54ab3ad 100644 --- a/homeassistant/components/pulseaudio_loopback/switch.py +++ b/homeassistant/components/pulseaudio_loopback/switch.py @@ -22,7 +22,7 @@ CONF_TCP_TIMEOUT = "tcp_timeout" DEFAULT_BUFFER_SIZE = 1024 DEFAULT_HOST = "localhost" DEFAULT_NAME = "paloopback" -DEFAULT_PORT = 4712 +DEFAULT_PORT = 4713 DEFAULT_TCP_TIMEOUT = 3 IGNORED_SWITCH_WARN = "Switch is already in the desired state. Ignoring."