mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-06 15:15:37 +01:00
add null check to ScheduleDirect
This commit is contained in:
parent
6da57c86cd
commit
156a047cfe
1 changed files with 5 additions and 0 deletions
|
|
@ -951,6 +951,11 @@ namespace MediaBrowser.Server.Implementations.LiveTv.Listings
|
|||
public string stationID { get; set; }
|
||||
public List<Program> programs { get; set; }
|
||||
public MetadataSchedule metadata { get; set; }
|
||||
|
||||
public Day()
|
||||
{
|
||||
programs = new List<Program>();
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
|
|
|
|||
Loading…
Reference in a new issue