fix windows restart

This commit is contained in:
Luke Pulverenti
2015-09-21 21:05:33 -04:00
parent a3f11aac38
commit 71780d401f
6 changed files with 28 additions and 11 deletions

View File

@@ -67,10 +67,14 @@ namespace MediaBrowser.Server.Implementations.LiveTv.EmbyTV
}
}
else if (info.ProductionYear != null)
else if (info.IsMovie && info.ProductionYear != null)
{
name += " (" + info.ProductionYear + ")";
}
else
{
name += " " + info.StartDate.ToString("yyyy-MM-dd");
}
return name;
}