diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-11-16 15:52:17 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-11-16 15:52:17 -0500 |
| commit | ca5afcb0d2f8acb16d3261a2d334e3cc4cb8e809 (patch) | |
| tree | b7a91f07bcaf09c95c9f1b61c4762ec7f2b1ee81 /MediaBrowser.ServerApplication/Networking/NetworkManager.cs | |
| parent | 3b9c04ad51aca5d3b58239c462dc2899764b9f63 (diff) | |
update live tv hls params
Diffstat (limited to 'MediaBrowser.ServerApplication/Networking/NetworkManager.cs')
| -rw-r--r-- | MediaBrowser.ServerApplication/Networking/NetworkManager.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.ServerApplication/Networking/NetworkManager.cs b/MediaBrowser.ServerApplication/Networking/NetworkManager.cs index ed99dcc06..6d3d96e19 100644 --- a/MediaBrowser.ServerApplication/Networking/NetworkManager.cs +++ b/MediaBrowser.ServerApplication/Networking/NetworkManager.cs @@ -25,7 +25,7 @@ namespace MediaBrowser.ServerApplication.Networking /// </summary> /// <param name="path">The path.</param> /// <returns>IEnumerable{NetworkShare}.</returns> - public IEnumerable<NetworkShare> GetNetworkShares(string path) + public override IEnumerable<NetworkShare> GetNetworkShares(string path) { Logger.Info("Getting network shares from {0}", path); return new ShareCollection(path).OfType<Share>().Select(ToNetworkShare); @@ -148,7 +148,7 @@ namespace MediaBrowser.ServerApplication.Networking /// Gets available devices within the domain /// </summary> /// <returns>PC's in the Domain</returns> - public IEnumerable<FileSystemEntryInfo> GetNetworkDevices() + public override IEnumerable<FileSystemEntryInfo> GetNetworkDevices() { return GetNetworkDevicesInternal().Select(c => new FileSystemEntryInfo { |
