aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-12-29 02:14:59 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-12-29 02:14:59 -0500
commit853dbfc558e271d2287ff30c774884072ee1aa6e (patch)
treee2784c6440b93fe4ff3aec5e3efa67056413a024 /MediaBrowser.Controller
parentcf720d2d659850cbd3d568984c39527aae0450c3 (diff)
separate player selection into it's own script
Diffstat (limited to 'MediaBrowser.Controller')
-rw-r--r--MediaBrowser.Controller/Chapters/IChapterManager.cs6
-rw-r--r--MediaBrowser.Controller/Entities/CollectionFolder.cs1
2 files changed, 0 insertions, 7 deletions
diff --git a/MediaBrowser.Controller/Chapters/IChapterManager.cs b/MediaBrowser.Controller/Chapters/IChapterManager.cs
index 4b39e66cc..05517ebcd 100644
--- a/MediaBrowser.Controller/Chapters/IChapterManager.cs
+++ b/MediaBrowser.Controller/Chapters/IChapterManager.cs
@@ -26,11 +26,5 @@ namespace MediaBrowser.Controller.Chapters
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task.</returns>
Task SaveChapters(string itemId, List<ChapterInfo> chapters, CancellationToken cancellationToken);
-
- /// <summary>
- /// Gets the configuration.
- /// </summary>
- /// <returns>ChapterOptions.</returns>
- ChapterOptions GetConfiguration();
}
}
diff --git a/MediaBrowser.Controller/Entities/CollectionFolder.cs b/MediaBrowser.Controller/Entities/CollectionFolder.cs
index 681f16f07..62ea21a79 100644
--- a/MediaBrowser.Controller/Entities/CollectionFolder.cs
+++ b/MediaBrowser.Controller/Entities/CollectionFolder.cs
@@ -121,7 +121,6 @@ namespace MediaBrowser.Controller.Entities
{
LibraryOptions[path] = options;
- options.SchemaVersion = 3;
XmlSerializer.SerializeToFile(options, GetLibraryOptionsPath(path));
}
}