Skip to content

Commit

Permalink
fix(imdb): updated title type in IMDb csv files for tv episodes and s…
Browse files Browse the repository at this point in the history
…hows (#164)

Co-authored-by: Damien Haynes <[email protected]>
  • Loading branch information
damienhaynes and Damien Haynes authored Aug 22, 2024
1 parent 0d56bbf commit e2d022b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("TraktRater")]
[assembly: AssemblyCopyright("Copyright © 2012-2023")]
[assembly: AssemblyCopyright("Copyright © 2012-2024")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -31,5 +31,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.3.13.0")]
[assembly: AssemblyFileVersion("2.3.13.0")]
[assembly: AssemblyVersion("2.3.14.0")]
[assembly: AssemblyFileVersion("2.3.14.0")]
2 changes: 1 addition & 1 deletion Sites/API/IMDb/IMDbExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public static IMDbType ItemType(this string itemType)
{
IMDbType retValue = IMDbType.Unknown;

switch (itemType.ToLower())
switch (itemType.Replace(" ", "").ToLower())
{
case "video":
case "documentary":
Expand Down

0 comments on commit e2d022b

Please sign in to comment.