diff --git a/configurations/homie/modules/home-assistant/netdaemon/apps/Spotify/PauseUnpause/PauseUnpause.cs b/configurations/homie/modules/home-assistant/netdaemon/apps/Spotify/PauseUnpause/PauseUnpause.cs index eba2b943..76b4de47 100644 --- a/configurations/homie/modules/home-assistant/netdaemon/apps/Spotify/PauseUnpause/PauseUnpause.cs +++ b/configurations/homie/modules/home-assistant/netdaemon/apps/Spotify/PauseUnpause/PauseUnpause.cs @@ -40,7 +40,7 @@ namespace NetDaemonConfig.Apps.Spotify.PauseUnpause catch (Exception error) { services.Notify.PersistentNotification( - message: error.Message, + message: error.Message + "\n" + e.ToString(), title: "Erreur Spotify"); } } diff --git a/configurations/homie/modules/home-assistant/netdaemon/apps/Spotify/PlayAlbum/PlayAlbum.cs b/configurations/homie/modules/home-assistant/netdaemon/apps/Spotify/PlayAlbum/PlayAlbum.cs index 9a24b9a5..65e78867 100644 --- a/configurations/homie/modules/home-assistant/netdaemon/apps/Spotify/PlayAlbum/PlayAlbum.cs +++ b/configurations/homie/modules/home-assistant/netdaemon/apps/Spotify/PlayAlbum/PlayAlbum.cs @@ -110,7 +110,7 @@ namespace NetDaemonConfig.Apps.Spotify.PlayAlbum catch (Exception error) { services.Notify.PersistentNotification( - message: error.Message, + message: error.Message + "\n" + e.ToString(), title: "Erreur Spotify"); } } diff --git a/configurations/homie/modules/home-assistant/netdaemon/apps/Spotify/PlayArtist/PlayArtist.cs b/configurations/homie/modules/home-assistant/netdaemon/apps/Spotify/PlayArtist/PlayArtist.cs index 98ac3725..cb990ae4 100644 --- a/configurations/homie/modules/home-assistant/netdaemon/apps/Spotify/PlayArtist/PlayArtist.cs +++ b/configurations/homie/modules/home-assistant/netdaemon/apps/Spotify/PlayArtist/PlayArtist.cs @@ -58,7 +58,7 @@ namespace NetDaemonConfig.Apps.Spotify.PlayArtist catch (Exception error) { services.Notify.PersistentNotification( - message: error.Message, + message: error.Message + "\n" + e.ToString(), title: "Erreur Spotify"); } } diff --git a/configurations/homie/modules/home-assistant/netdaemon/apps/Spotify/PlayPlaylist/PlayPlaylist.cs b/configurations/homie/modules/home-assistant/netdaemon/apps/Spotify/PlayPlaylist/PlayPlaylist.cs index 568d126a..e7bd0aa0 100644 --- a/configurations/homie/modules/home-assistant/netdaemon/apps/Spotify/PlayPlaylist/PlayPlaylist.cs +++ b/configurations/homie/modules/home-assistant/netdaemon/apps/Spotify/PlayPlaylist/PlayPlaylist.cs @@ -92,7 +92,7 @@ namespace NetDaemonConfig.Apps.Spotify.PlayPlaylist catch (Exception error) { services.Notify.PersistentNotification( - message: error.Message, + message: error.Message + "\n" + e.ToString(), title: "Erreur Spotify"); } } diff --git a/configurations/homie/modules/home-assistant/netdaemon/apps/Spotify/PlaySong/PlaySong.cs b/configurations/homie/modules/home-assistant/netdaemon/apps/Spotify/PlaySong/PlaySong.cs index f4812039..5a4eced2 100644 --- a/configurations/homie/modules/home-assistant/netdaemon/apps/Spotify/PlaySong/PlaySong.cs +++ b/configurations/homie/modules/home-assistant/netdaemon/apps/Spotify/PlaySong/PlaySong.cs @@ -59,7 +59,7 @@ namespace NetDaemonConfig.Apps.Spotify.PlaySong catch (Exception error) { services.Notify.PersistentNotification( - message: error.Message, + message: error.Message + "\n" + e.ToString(), title: "Erreur Spotify"); } }