aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/FileOrganization/IFileOrganizationService.cs
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2016-02-12 20:51:33 -0500
committerLuke <luke.pulverenti@gmail.com>2016-02-12 20:51:33 -0500
commit61ac8151ff0a25ad4469b74f7a7defa24e4e8b22 (patch)
treee165028a81b196c7e222973f3ae49771f62a41c8 /MediaBrowser.Controller/FileOrganization/IFileOrganizationService.cs
parent5a2778f6d833b591dfe52fa03de19324a1253250 (diff)
parent59c9081f4b25b96f7cc9203a319ad19328651772 (diff)
Merge pull request #1435 from softworkz/SeriesDetectionV2
Auto-Organize - Feature to remember/persist series matching in manual organization dialog: Changed to match against plain library name instead of library item GUID.
Diffstat (limited to 'MediaBrowser.Controller/FileOrganization/IFileOrganizationService.cs')
-rw-r--r--MediaBrowser.Controller/FileOrganization/IFileOrganizationService.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/FileOrganization/IFileOrganizationService.cs b/MediaBrowser.Controller/FileOrganization/IFileOrganizationService.cs
index 8d7f4e117..daa670d83 100644
--- a/MediaBrowser.Controller/FileOrganization/IFileOrganizationService.cs
+++ b/MediaBrowser.Controller/FileOrganization/IFileOrganizationService.cs
@@ -78,8 +78,8 @@ namespace MediaBrowser.Controller.FileOrganization
/// <summary>
/// Deletes a smart match entry.
/// </summary>
- /// <param name="Id">Item Id.</param>
+ /// <param name="ItemName">Item name.</param>
/// <param name="matchString">The match string to delete.</param>
- void DeleteSmartMatchEntry(string Id, string matchString);
+ void DeleteSmartMatchEntry(string ItemName, string matchString);
}
}