Browse Source

Update Jellyfin.Networking/Manager/NetworkManager.cs

Co-authored-by: Bond-009 <bond.009@outlook.com>
BaronGreenback 4 năm trước cách đây
mục cha
commit
b5c6e5fb97

+ 1 - 5
Jellyfin.Networking/Manager/NetworkManager.cs

@@ -713,11 +713,7 @@ namespace Jellyfin.Networking.Manager
                     if ((!partial && string.Equals(interfc, token, StringComparison.OrdinalIgnoreCase))
                     if ((!partial && string.Equals(interfc, token, StringComparison.OrdinalIgnoreCase))
                         || (partial && interfc.StartsWith(token, true, CultureInfo.InvariantCulture)))
                         || (partial && interfc.StartsWith(token, true, CultureInfo.InvariantCulture)))
                     {
                     {
-                        if (index == null)
-                        {
-                            index = new List<int>();
-                        }
-
+                        index ??= new List<int>();
                         index.Add(interfcIndex);
                         index.Add(interfcIndex);
                     }
                     }
                 }
                 }