mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-15 08:23:28 -03:00
Fix nullability for INetworkManager.GetBindAddress
This commit is contained in:
@@ -82,7 +82,7 @@ namespace MediaBrowser.Common.Net
|
||||
/// <param name="port">Optional port returned, if it's part of an override.</param>
|
||||
/// <param name="skipOverrides">Optional boolean denoting if published server overrides should be ignored. Defaults to false.</param>
|
||||
/// <returns>IP address to use, or loopback address if all else fails.</returns>
|
||||
string GetBindAddress(IPAddress source, out int? port, bool skipOverrides = false);
|
||||
string GetBindAddress(IPAddress? source, out int? port, bool skipOverrides = false);
|
||||
|
||||
/// <summary>
|
||||
/// Retrieves the bind address to use in system URLs. (Server Discovery, PlayTo, LiveTV, SystemInfo)
|
||||
|
||||
Reference in New Issue
Block a user