From 9cf359be3068a67517a1b4e0db525117efb6c704 Mon Sep 17 00:00:00 2001 From: fxsth Date: Wed, 6 Jul 2022 19:48:31 +0200 Subject: [PATCH] Include ipv6 addresses in resource connections --- Source/Plex.ServerApi/Clients/PlexAccountClient.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Plex.ServerApi/Clients/PlexAccountClient.cs b/Source/Plex.ServerApi/Clients/PlexAccountClient.cs index 79e1cee..8c5dd1b 100644 --- a/Source/Plex.ServerApi/Clients/PlexAccountClient.cs +++ b/Source/Plex.ServerApi/Clients/PlexAccountClient.cs @@ -160,7 +160,7 @@ public async Task> GetResourcesAsync(string authToken) { var queryParams = new Dictionary { - {"includeHttps", "1"}, {"includeRelay", "1"} + {"includeHttps", "1"}, {"includeRelay", "1"}, {"includeIPv6", "1"} }; var apiRequest = new ApiRequestBuilder(BaseUri + "resources", "", HttpMethod.Get)