1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 12:02:35 +02:00

Fixed Scene Mapping error message.

This commit is contained in:
Taloth Saldono 2017-05-09 17:26:45 +02:00
parent a5bc4a8f11
commit cd7368512d

View File

@ -16,7 +16,7 @@ public InvalidSceneMappingException(IEnumerable<SceneMapping> mappings)
private static string FormatMessage(IEnumerable<SceneMapping> 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())));
}
}
}