aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Library
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-06-18 01:16:00 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-06-18 01:16:00 -0400
commitf8bfe596b4d5731aeb93a12abca3951d4a3de989 (patch)
tree6b42d7c1fe553a7fde40e277f6646bc75653733f /MediaBrowser.Controller/Library
parent645640baca4a4da1f5d7f75c9e457f8d22465abf (diff)
channel fixes
Diffstat (limited to 'MediaBrowser.Controller/Library')
-rw-r--r--MediaBrowser.Controller/Library/ILibraryManager.cs5
1 files changed, 2 insertions, 3 deletions
diff --git a/MediaBrowser.Controller/Library/ILibraryManager.cs b/MediaBrowser.Controller/Library/ILibraryManager.cs
index e6f50635b..5f88e0e58 100644
--- a/MediaBrowser.Controller/Library/ILibraryManager.cs
+++ b/MediaBrowser.Controller/Library/ILibraryManager.cs
@@ -9,7 +9,6 @@ using System.Collections.Generic;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
-using MediaBrowser.Model.Querying;
namespace MediaBrowser.Controller.Library
{
@@ -337,10 +336,10 @@ namespace MediaBrowser.Controller.Library
/// Gets the named folder.
/// </summary>
/// <param name="name">The name.</param>
- /// <param name="type">The type.</param>
+ /// <param name="viewType">Type of the view.</param>
/// <param name="sortName">Name of the sort.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task{Folder}.</returns>
- Task<UserView> GetNamedView(string name, string type, string sortName, CancellationToken cancellationToken);
+ Task<UserView> GetNamedView(string name, string viewType, string sortName, CancellationToken cancellationToken);
}
} \ No newline at end of file