mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Updated file scan logging
This commit is contained in:
@@ -27,10 +27,10 @@ namespace NzbDrone.Core.Model
|
||||
public override string ToString()
|
||||
{
|
||||
if (Episodes == null)
|
||||
return string.Format("Series:{0} Air Date:{1}", CleanTitle, AirDate.Date);
|
||||
return string.Format("{0} - {1}", CleanTitle, AirDate.Date);
|
||||
|
||||
return string.Format("Series:{0} Season:{1} Episode:{2}", CleanTitle, SeasonNumber,
|
||||
String.Join(",", Episodes));
|
||||
return string.Format("{0} - S{1:00}E{2}", CleanTitle, SeasonNumber,
|
||||
String.Join("-", Episodes));
|
||||
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user