mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-12-26 17:36:52 +00:00
Use MinBy and MaxBy
This commit is contained in:
parent
eb59456e78
commit
e74630a613
|
@ -304,7 +304,7 @@ namespace Emby.Server.Implementations.Plugins
|
|||
// If no version is given, return the current instance.
|
||||
var plugins = _plugins.Where(p => p.Id.Equals(id)).ToList();
|
||||
|
||||
plugin = plugins.FirstOrDefault(p => p.Instance is not null) ?? plugins.OrderByDescending(p => p.Version).FirstOrDefault();
|
||||
plugin = plugins.FirstOrDefault(p => p.Instance is not null) ?? plugins.MaxBy(p => p.Version);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
@ -69,9 +69,7 @@ namespace Emby.Server.Implementations.Session
|
|||
T data,
|
||||
CancellationToken cancellationToken)
|
||||
{
|
||||
var socket = GetActiveSockets()
|
||||
.OrderByDescending(i => i.LastActivityDate)
|
||||
.FirstOrDefault();
|
||||
var socket = GetActiveSockets().MaxBy(i => i.LastActivityDate);
|
||||
|
||||
if (socket is null)
|
||||
{
|
||||
|
|
|
@ -20,7 +20,6 @@ using MediaBrowser.Controller.Devices;
|
|||
using MediaBrowser.Controller.Dlna;
|
||||
using MediaBrowser.Controller.Library;
|
||||
using MediaBrowser.Controller.MediaEncoding;
|
||||
using MediaBrowser.Controller.Net;
|
||||
using MediaBrowser.MediaEncoding.Encoder;
|
||||
using MediaBrowser.Model.Configuration;
|
||||
using MediaBrowser.Model.Dlna;
|
||||
|
@ -2030,8 +2029,7 @@ public class DynamicHlsController : BaseJellyfinApiController
|
|||
{
|
||||
return fileSystem.GetFiles(folder, new[] { segmentExtension }, true, false)
|
||||
.Where(i => Path.GetFileNameWithoutExtension(i.Name).StartsWith(filePrefix, StringComparison.OrdinalIgnoreCase))
|
||||
.OrderByDescending(fileSystem.GetLastWriteTimeUtc)
|
||||
.FirstOrDefault();
|
||||
.MaxBy(fileSystem.GetLastWriteTimeUtc);
|
||||
}
|
||||
catch (IOException)
|
||||
{
|
||||
|
|
|
@ -146,7 +146,7 @@ public class PluginsController : BaseJellyfinApiController
|
|||
var plugins = _pluginManager.Plugins.Where(p => p.Id.Equals(pluginId)).ToList();
|
||||
|
||||
// Select the un-instanced one first.
|
||||
var plugin = plugins.FirstOrDefault(p => p.Instance is null) ?? plugins.OrderBy(p => p.Manifest.Status).FirstOrDefault();
|
||||
var plugin = plugins.FirstOrDefault(p => p.Instance is null) ?? plugins.MinBy(p => p.Manifest.Status);
|
||||
|
||||
if (plugin is not null)
|
||||
{
|
||||
|
|
|
@ -1256,8 +1256,7 @@ namespace Jellyfin.Networking.Manager
|
|||
// Look for the best internal address.
|
||||
bindAddress = addresses
|
||||
.Where(p => IsInLocalNetwork(p) && (p.Contains(source) || p.Equals(IPAddress.None)))
|
||||
.OrderBy(p => p.Tag)
|
||||
.FirstOrDefault()?.Address;
|
||||
.MinBy(p => p.Tag)?.Address;
|
||||
}
|
||||
|
||||
if (bindAddress is not null)
|
||||
|
|
Loading…
Reference in a new issue