diff --git a/MediaBrowser.Controller/Channels/IChannelManager.cs b/MediaBrowser.Controller/Channels/IChannelManager.cs
index 95d95465e..49be897ef 100644
--- a/MediaBrowser.Controller/Channels/IChannelManager.cs
+++ b/MediaBrowser.Controller/Channels/IChannelManager.cs
@@ -51,14 +51,14 @@ namespace MediaBrowser.Controller.Channels
/// Gets the channels internal.
///
/// The query.
- /// The of .
+ /// The channels.
QueryResult GetChannelsInternal(ChannelQuery query);
///
/// Gets the channels.
///
/// The query.
- /// The of .
+ /// The channels.
QueryResult GetChannels(ChannelQuery query);
///
@@ -66,7 +66,7 @@ namespace MediaBrowser.Controller.Channels
///
/// The item query.
/// The cancellation token.
- /// A containing the of .
+ /// The latest channels.
Task> GetLatestChannelItems(InternalItemsQuery query, CancellationToken cancellationToken);
///
@@ -74,7 +74,7 @@ namespace MediaBrowser.Controller.Channels
///
/// The item query.
/// The cancellation token.
- /// A containing the of .
+ /// The latest channels.
Task> GetLatestChannelItemsInternal(InternalItemsQuery query, CancellationToken cancellationToken);
///
@@ -82,7 +82,7 @@ namespace MediaBrowser.Controller.Channels
///
/// The query.
/// The cancellation token.
- /// A containing the of .
+ /// The channel items.
Task> GetChannelItems(InternalItemsQuery query, CancellationToken cancellationToken);
///
@@ -91,7 +91,7 @@ namespace MediaBrowser.Controller.Channels
/// The query.
/// The progress to report to.
/// The cancellation token.
- /// A containing the of .
+ /// The channel items.
Task> GetChannelItemsInternal(InternalItemsQuery query, IProgress progress, CancellationToken cancellationToken);
///
@@ -99,7 +99,7 @@ namespace MediaBrowser.Controller.Channels
///
/// The item.
/// The cancellation token.
- /// Task{IEnumerable{MediaSourceInfo}}.
+ /// The item media sources.
IEnumerable GetStaticMediaSources(BaseItem item, CancellationToken cancellationToken);
///
diff --git a/MediaBrowser.Controller/Channels/ISupportsDelete.cs b/MediaBrowser.Controller/Channels/ISupportsDelete.cs
index d7234fa38..204054374 100644
--- a/MediaBrowser.Controller/Channels/ISupportsDelete.cs
+++ b/MediaBrowser.Controller/Channels/ISupportsDelete.cs
@@ -1,6 +1,4 @@
-#nullable disable
-
-#pragma warning disable CS1591
+#pragma warning disable CS1591
using System.Threading;
using System.Threading.Tasks;
diff --git a/MediaBrowser.Controller/Channels/ISupportsLatestMedia.cs b/MediaBrowser.Controller/Channels/ISupportsLatestMedia.cs
index 6820d9222..dbba7cba2 100644
--- a/MediaBrowser.Controller/Channels/ISupportsLatestMedia.cs
+++ b/MediaBrowser.Controller/Channels/ISupportsLatestMedia.cs
@@ -15,7 +15,7 @@ namespace MediaBrowser.Controller.Channels
///
/// The request.
/// The cancellation token.
- /// Task{IEnumerable{ChannelItemInfo}}.
+ /// The latest media.
Task> GetLatestMedia(ChannelLatestMediaSearch request, CancellationToken cancellationToken);
}
}
\ No newline at end of file
diff --git a/MediaBrowser.Controller/Dto/IDtoService.cs b/MediaBrowser.Controller/Dto/IDtoService.cs
index e0950b1f6..61d796235 100644
--- a/MediaBrowser.Controller/Dto/IDtoService.cs
+++ b/MediaBrowser.Controller/Dto/IDtoService.cs
@@ -46,7 +46,7 @@ namespace MediaBrowser.Controller.Dto
/// The dto options.
/// The list of tagged items.
/// The user.
- /// The .
+ /// The item dto.
BaseItemDto GetItemByNameDto(BaseItem item, DtoOptions options, List taggedItems, User user = null);
}
}
diff --git a/MediaBrowser.Controller/Library/ILibraryManager.cs b/MediaBrowser.Controller/Library/ILibraryManager.cs
index ca21569a7..3fd4ff899 100644
--- a/MediaBrowser.Controller/Library/ILibraryManager.cs
+++ b/MediaBrowser.Controller/Library/ILibraryManager.cs
@@ -48,7 +48,7 @@ namespace MediaBrowser.Controller.Library
/// The parent folder.
/// The library options.
/// The collection type.
- /// The list of .
+ /// The items resolved from the paths.
IEnumerable ResolvePaths(
IEnumerable files,
IDirectoryService directoryService,
diff --git a/MediaBrowser.Controller/Playlists/Playlist.cs b/MediaBrowser.Controller/Playlists/Playlist.cs
index f767c2c2b..bb9e5da1e 100644
--- a/MediaBrowser.Controller/Playlists/Playlist.cs
+++ b/MediaBrowser.Controller/Playlists/Playlist.cs
@@ -22,15 +22,14 @@ namespace MediaBrowser.Controller.Playlists
{
public class Playlist : Folder, IHasShares
{
- public static readonly IReadOnlyList SupportedExtensions =
- new[]
- {
- ".m3u",
- ".m3u8",
- ".pls",
- ".wpl",
- ".zpl"
- };
+ public static readonly IReadOnlyList SupportedExtensions = new[]
+ {
+ ".m3u",
+ ".m3u8",
+ ".pls",
+ ".wpl",
+ ".zpl"
+ };
public Guid OwnerUserId { get; set; }
diff --git a/MediaBrowser.Controller/TV/ITVSeriesManager.cs b/MediaBrowser.Controller/TV/ITVSeriesManager.cs
index 328cf18f6..e066c03fd 100644
--- a/MediaBrowser.Controller/TV/ITVSeriesManager.cs
+++ b/MediaBrowser.Controller/TV/ITVSeriesManager.cs
@@ -16,7 +16,7 @@ namespace MediaBrowser.Controller.TV
///
/// The next up query.
/// The dto options.
- /// The query result of .
+ /// The next up items.
QueryResult GetNextUp(NextUpQuery query, DtoOptions options);
///
@@ -25,7 +25,7 @@ namespace MediaBrowser.Controller.TV
/// The next up request.
/// The list of parent folders.
/// The dto options.
- /// The query result of .
+ /// The next up items.
QueryResult GetNextUp(NextUpQuery request, BaseItem[] parentsFolders, DtoOptions options);
}
}