From 0a52be5c9e04726884c3b60a60478a06159f44f2 Mon Sep 17 00:00:00 2001 From: Qstick Date: Fri, 20 Oct 2023 20:00:33 -0500 Subject: [PATCH] Fixed: Improved messaging when track file was detected as deleted from disk Closes #2541 --- frontend/src/Activity/History/Details/HistoryDetails.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/Activity/History/Details/HistoryDetails.js b/frontend/src/Activity/History/Details/HistoryDetails.js index a439194f6..b90a64f47 100644 --- a/frontend/src/Activity/History/Details/HistoryDetails.js +++ b/frontend/src/Activity/History/Details/HistoryDetails.js @@ -264,7 +264,7 @@ function HistoryDetails(props) { reasonMessage = 'File was deleted by via UI'; break; case 'MissingFromDisk': - reasonMessage = 'Lidarr was unable to find the file on disk so it was removed'; + reasonMessage = 'Lidarr was unable to find the file on disk so the file was unlinked from the album/track in the database'; break; case 'Upgrade': reasonMessage = 'File was deleted to import an upgrade';