1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-12-26 12:27:52 +00:00

Break if MPD connection fails. (#491)

This commit is contained in:
Brenden Matthews 2018-05-12 22:57:11 -04:00 committed by GitHub
parent 95237ae4e0
commit 42e43435f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -185,6 +185,7 @@ void mpd_cb::work() {
conn = nullptr; conn = nullptr;
mpd_info.status = "MPD not responding"; mpd_info.status = "MPD not responding";
break;
} }
mpd_finishCommand(conn); mpd_finishCommand(conn);
if ((conn == nullptr) || (conn->error != 0)) { if ((conn == nullptr) || (conn->error != 0)) {