From 64aa15842c8f04493c1df7f136b03c02eabd66de Mon Sep 17 00:00:00 2001 From: Jonas Kvinge Date: Sun, 25 Aug 2024 17:30:09 +0200 Subject: [PATCH] Organize: Correct debug message --- src/organize/organize.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/organize/organize.cpp b/src/organize/organize.cpp index 412d5377..4f700b80 100644 --- a/src/organize/organize.cpp +++ b/src/organize/organize.cpp @@ -247,7 +247,7 @@ void Organize::ProcessSomeFiles() { else if (destination_->source() == Song::Source::Device) { const TagReaderClient::Result result = TagReaderClient::Instance()->LoadEmbeddedArtAsImageBlocking(task.song_info_.song_.url().toLocalFile(), job.cover_image_); if (!result.success()) { - qLog(Error) << "Could not save embedded art to" << task.song_info_.song_.url() << result.error; + qLog(Error) << "Could not load embedded art from" << task.song_info_.song_.url() << result.error; } }