Merge pull request #9583 from goremykin/use_minby_and_maxby
This commit is contained in:
commit
22d8806622
|
@ -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)
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
|
||||
<s:Boolean x:Key="/Default/UserDictionary/Words/=Emby/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/UserDictionary/Words/=Jellyfin/@EntryIndexedValue">True</s:Boolean>
|
||||
<s:Boolean x:Key="/Default/UserDictionary/Words/=Playstate/@EntryIndexedValue">True</s:Boolean></wpf:ResourceDictionary>
|
Loading…
Reference in New Issue
Block a user