use other video plot as xmltv description (#1219)
This commit is contained in:
@@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
|
|||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
### Added
|
||||||
|
- Use `plot` field from Other Video NFO metadata as XMLTV description
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- Fix updating (re-adding) Trakt lists to properly use new metadata ids that were not present when originally added
|
- Fix updating (re-adding) Trakt lists to properly use new metadata ids that were not present when originally added
|
||||||
|
|
||||||
|
|||||||
@@ -478,6 +478,8 @@ public class ChannelGuide
|
|||||||
.IfNone(string.Empty),
|
.IfNone(string.Empty),
|
||||||
MusicVideo mv => mv.MusicVideoMetadata.HeadOrNone().Map(mvm => mvm.Plot ?? string.Empty)
|
MusicVideo mv => mv.MusicVideoMetadata.HeadOrNone().Map(mvm => mvm.Plot ?? string.Empty)
|
||||||
.IfNone(string.Empty),
|
.IfNone(string.Empty),
|
||||||
|
OtherVideo ov => ov.OtherVideoMetadata.HeadOrNone().Map(ovm => ovm.Plot ?? string.Empty)
|
||||||
|
.IfNone(string.Empty),
|
||||||
_ => string.Empty
|
_ => string.Empty
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user