diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-03-10 22:07:07 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-03-10 22:07:07 -0400 |
| commit | f39d460f04a170405407b99cc05ee997fe6dc401 (patch) | |
| tree | 8d0786d05612aff0afc86aeacdb1e7366e5ff5a0 /MediaBrowser.Controller/LiveTv | |
| parent | 359f90afd4723ad487a68bf059efb458e4c7dc9e (diff) | |
update artist and album fields on song changes
Diffstat (limited to 'MediaBrowser.Controller/LiveTv')
| -rw-r--r-- | MediaBrowser.Controller/LiveTv/ILiveTvRecording.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/LiveTv/ILiveTvRecording.cs b/MediaBrowser.Controller/LiveTv/ILiveTvRecording.cs index 784cb6ea18..3a0045f4b4 100644 --- a/MediaBrowser.Controller/LiveTv/ILiveTvRecording.cs +++ b/MediaBrowser.Controller/LiveTv/ILiveTvRecording.cs @@ -1,4 +1,5 @@ using MediaBrowser.Controller.Entities; +using MediaBrowser.Controller.Library; using MediaBrowser.Controller.Providers; using MediaBrowser.Model.Library; using System.Threading; @@ -22,7 +23,7 @@ namespace MediaBrowser.Controller.LiveTv bool IsParentalAllowed(User user); - Task RefreshMetadata(MetadataRefreshOptions options, CancellationToken cancellationToken); + Task<ItemUpdateType> RefreshMetadata(MetadataRefreshOptions options, CancellationToken cancellationToken); PlayAccess GetPlayAccess(User user); |
