diff options
| author | Luke <luke.pulverenti@gmail.com> | 2016-11-17 02:06:35 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-11-17 02:06:35 -0500 |
| commit | d8f40438d499c7a5caa48fe7b1f05ede83a02f1a (patch) | |
| tree | 29e8c660f108f9efe1d099e20d0a2b04be7bb33e /Emby.Common.Implementations/Networking/NetworkManager.cs | |
| parent | 43ee35a19c4e5b3a1a4977fbf38bea70c700c6ca (diff) | |
| parent | 5bcc419857f9445bc5964d0518c656090b2ae4ee (diff) | |
Merge pull request #2293 from MediaBrowser/dev
Dev
Diffstat (limited to 'Emby.Common.Implementations/Networking/NetworkManager.cs')
| -rw-r--r-- | Emby.Common.Implementations/Networking/NetworkManager.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Emby.Common.Implementations/Networking/NetworkManager.cs b/Emby.Common.Implementations/Networking/NetworkManager.cs index e33697337..a4f8f7ced 100644 --- a/Emby.Common.Implementations/Networking/NetworkManager.cs +++ b/Emby.Common.Implementations/Networking/NetworkManager.cs @@ -489,7 +489,7 @@ namespace Emby.Common.Implementations.Networking /// </summary> /// <param name="path">The path.</param> /// <returns>IEnumerable{NetworkShare}.</returns> - public IEnumerable<NetworkShare> GetNetworkShares(string path) + public virtual IEnumerable<NetworkShare> GetNetworkShares(string path) { return new List<NetworkShare>(); } @@ -498,7 +498,7 @@ namespace Emby.Common.Implementations.Networking /// Gets available devices within the domain /// </summary> /// <returns>PC's in the Domain</returns> - public IEnumerable<FileSystemEntryInfo> GetNetworkDevices() + public virtual IEnumerable<FileSystemEntryInfo> GetNetworkDevices() { return new List<FileSystemEntryInfo>(); } |
