From cd7368512d84604ec885ddb593003e0e80a750f9 Mon Sep 17 00:00:00 2001 From: Taloth Saldono Date: Tue, 9 May 2017 17:26:45 +0200 Subject: [PATCH] Fixed Scene Mapping error message. --- .../DataAugmentation/Scene/InvalidSceneMappingException.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/DataAugmentation/Scene/InvalidSceneMappingException.cs b/src/NzbDrone.Core/DataAugmentation/Scene/InvalidSceneMappingException.cs index 8a89d1030..ec9f56c6b 100644 --- a/src/NzbDrone.Core/DataAugmentation/Scene/InvalidSceneMappingException.cs +++ b/src/NzbDrone.Core/DataAugmentation/Scene/InvalidSceneMappingException.cs @@ -16,7 +16,7 @@ namespace NzbDrone.Core.DataAugmentation.Scene private static string FormatMessage(IEnumerable mappings) { - return string.Format("Scene Mappings contains a conflict for tvdbids {0}, please notify Sonarr developers", mappings.Select(v => v.TvdbId)); + return string.Format("Scene Mappings contains a conflict for tvdbids {0}. Please notify Sonarr developers.", string.Join(",", mappings.Select(v => v.TvdbId.ToString()))); } } }