Browse Source

sync virtual shows and season from jellyfin (#536)

pull/537/head
Jason Dove 4 years ago committed by GitHub
parent
commit
ae2c6350e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      CHANGELOG.md
  2. 10
      ErsatzTV.Infrastructure/Jellyfin/JellyfinApiClient.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 bug with saving multiple blurhash versions for cover art; all cover art will be automatically rescanned
- Fix song detail margin when no cover art exists and no watermark exists
- Fix synchronizing virtual shows and seasons from Jellyfin
### Changed
- Use blurhash of ErsatzTV colors instead of solid colors for default song backgrounds

10
ErsatzTV.Infrastructure/Jellyfin/JellyfinApiClient.cs

@ -383,11 +383,6 @@ namespace ErsatzTV.Infrastructure.Jellyfin @@ -383,11 +383,6 @@ namespace ErsatzTV.Infrastructure.Jellyfin
{
try
{
if (item.LocationType != "FileSystem")
{
return None;
}
ShowMetadata metadata = ProjectToShowMetadata(item);
var show = new JellyfinShow
@ -481,11 +476,6 @@ namespace ErsatzTV.Infrastructure.Jellyfin @@ -481,11 +476,6 @@ namespace ErsatzTV.Infrastructure.Jellyfin
{
try
{
if (item.LocationType != "FileSystem")
{
return None;
}
DateTime dateAdded = item.DateCreated.UtcDateTime;
// DateTime lastWriteTime = DateTimeOffset.FromUnixTimeSeconds(response.UpdatedAt).DateTime;

Loading…
Cancel
Save