mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-23 06:45:19 -07:00
Fixed Scene Mapping error message.
This commit is contained in:
parent
a5bc4a8f11
commit
cd7368512d
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ namespace NzbDrone.Core.DataAugmentation.Scene
|
||||||
|
|
||||||
private static string FormatMessage(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())));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue