diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-04-16 21:45:44 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-04-16 21:45:44 -0400 |
| commit | eddcc466022c063265dc6fa8e729bbdf6c18a467 (patch) | |
| tree | 7991c246ccb90c97d0b25297933bf1b37801c8ef /MediaBrowser.Controller | |
| parent | 25e6e0a5726f59fedd3d25bf6ae6adc626a25306 (diff) | |
improve performance of getting channel list
Diffstat (limited to 'MediaBrowser.Controller')
| -rw-r--r-- | MediaBrowser.Controller/LiveTv/ILiveTvManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/LiveTv/ILiveTvManager.cs b/MediaBrowser.Controller/LiveTv/ILiveTvManager.cs index c8fa6be8c..7e1dab462 100644 --- a/MediaBrowser.Controller/LiveTv/ILiveTvManager.cs +++ b/MediaBrowser.Controller/LiveTv/ILiveTvManager.cs @@ -367,7 +367,7 @@ namespace MediaBrowser.Controller.LiveTv /// <param name="items">The items.</param> /// <param name="options">The options.</param> /// <param name="user">The user.</param> - void AddChannelInfo(List<Tuple<BaseItemDto, LiveTvChannel>> items, DtoOptions options, User user); + Task AddChannelInfo(List<Tuple<BaseItemDto, LiveTvChannel>> items, DtoOptions options, User user); /// <summary> /// Called when [recording file deleted]. |
