aboutsummaryrefslogtreecommitdiff
path: root/Emby.Common.Implementations/Networking/NetworkManager.cs
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2016-11-17 02:06:35 -0500
committerGitHub <noreply@github.com>2016-11-17 02:06:35 -0500
commitd8f40438d499c7a5caa48fe7b1f05ede83a02f1a (patch)
tree29e8c660f108f9efe1d099e20d0a2b04be7bb33e /Emby.Common.Implementations/Networking/NetworkManager.cs
parent43ee35a19c4e5b3a1a4977fbf38bea70c700c6ca (diff)
parent5bcc419857f9445bc5964d0518c656090b2ae4ee (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.cs4
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>();
}