From 3fc7f54fd7bc419c59996a1926fb50ee0a5fd5eb Mon Sep 17 00:00:00 2001 From: matt1432 Date: Sun, 1 Dec 2024 22:56:35 -0500 Subject: [PATCH] fix(spotifyd): remove space from device name --- .../modules/home-assistant/netdaemon/apps/Spotify/Types.cs | 2 +- devices/homie/modules/music/default.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/devices/homie/modules/home-assistant/netdaemon/apps/Spotify/Types.cs b/devices/homie/modules/home-assistant/netdaemon/apps/Spotify/Types.cs index 5ed7c70d..9d214020 100644 --- a/devices/homie/modules/home-assistant/netdaemon/apps/Spotify/Types.cs +++ b/devices/homie/modules/home-assistant/netdaemon/apps/Spotify/Types.cs @@ -4,7 +4,7 @@ namespace NetDaemonConfig.Apps.Spotify { public static class SpotifyTypes { - public const string DefaultDevId = "homie connect"; + public const string DefaultDevId = "homie"; public const string DefaultEntityId = "media_player.spotifyplus"; } diff --git a/devices/homie/modules/music/default.nix b/devices/homie/modules/music/default.nix index 963ae818..8d9e5077 100644 --- a/devices/homie/modules/music/default.nix +++ b/devices/homie/modules/music/default.nix @@ -87,7 +87,7 @@ }; settings.global = { - device_name = config.networking.hostName + " connect"; + device_name = config.networking.hostName; device_type = "speaker"; zeroconf_port = 33798;