Browse Source

fix trakt list sync when show does not contain a year (#572)

pull/574/head
Jason Dove 4 years ago committed by GitHub
parent
commit
cbe5d47611
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      CHANGELOG.md
  2. 2
      ErsatzTV.Infrastructure/Trakt/Models/TraktListItemShow.cs

1
CHANGELOG.md

@ -7,6 +7,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). @@ -7,6 +7,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### Fixed
- Fix local folder scanners to properly detect removed/re-added folders with unchanged contents
- Fix double-click startup on mac
- Fix trakt list sync when show does not contain a year
### Added
- Add trash system for local libraries to maintain collection and schedule integrity through media share outages

2
ErsatzTV.Infrastructure/Trakt/Models/TraktListItemShow.cs

@ -3,7 +3,7 @@ @@ -3,7 +3,7 @@
public class TraktListItemShow
{
public string Title { get; set; }
public int Year { get; set; }
public int? Year { get; set; }
public TraktListItemIds Ids { get; set; }
}
}

Loading…
Cancel
Save