mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-19 07:57:49 -04:00
Fix Json serialization error (cherry picked from commit 91600b1c81872e1745401942633a87085dc706b5) Signed-off-by: Joshua Boniface <joshua@boniface.me>
17 lines
398 B
C#
17 lines
398 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
{
|
|
public class PhotoAlbum : Folder
|
|
{
|
|
[JsonIgnore]
|
|
public override bool AlwaysScanInternalMetadataPath => true;
|
|
|
|
[JsonIgnore]
|
|
public override bool SupportsPlayedStatus => false;
|
|
|
|
[JsonIgnore]
|
|
public override bool SupportsInheritedParentImages => false;
|
|
}
|
|
}
|