Remove unnecessary foreach loop

This commit is contained in:
Mark Monteiro 2020-04-26 18:04:34 -04:00
parent 679f97d5e9
commit 15fd4812f0

View file

@ -1187,13 +1187,12 @@ namespace Emby.Server.Implementations
{ {
// Return the first matched address, if found, or the first known local address // Return the first matched address, if found, or the first known local address
var addresses = await GetLocalIpAddressesInternal(false, 1, cancellationToken).ConfigureAwait(false); var addresses = await GetLocalIpAddressesInternal(false, 1, cancellationToken).ConfigureAwait(false);
if (addresses.Count == 0)
foreach (var address in addresses)
{ {
return GetLocalApiUrl(address); return null;
} }
return null; return GetLocalApiUrl(addresses.First());
} }
catch (Exception ex) catch (Exception ex)
{ {