mirror of
https://github.com/owntone/owntone-server.git
synced 2024-12-25 22:55:56 -05:00
Better log message when libspotify is missing
This commit is contained in:
parent
f0f525bb40
commit
1a137db1b4
@ -1794,7 +1794,11 @@ spotify_login(char *path)
|
||||
|
||||
if (!g_sess)
|
||||
{
|
||||
DPRINTF(E_LOG, L_SPOTIFY, "Can't login! No valid Spotify session.\n");
|
||||
if (!g_libhandle)
|
||||
DPRINTF(E_LOG, L_SPOTIFY, "Can't login! - could not find libspotify\n");
|
||||
else
|
||||
DPRINTF(E_LOG, L_SPOTIFY, "Can't login! - no valid Spotify session\n");
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user