Skip to content

Commit

Permalink
Include ipv6 addresses in resource connections
Browse files Browse the repository at this point in the history
  • Loading branch information
fxsth committed Jul 6, 2022
1 parent 44db9c3 commit 9cf359b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Plex.ServerApi/Clients/PlexAccountClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ public async Task<List<Resource>> GetResourcesAsync(string authToken)
{
var queryParams = new Dictionary<string, string>
{
{"includeHttps", "1"}, {"includeRelay", "1"}
{"includeHttps", "1"}, {"includeRelay", "1"}, {"includeIPv6", "1"}
};

var apiRequest = new ApiRequestBuilder(BaseUri + "resources", "", HttpMethod.Get)
Expand Down

0 comments on commit 9cf359b

Please sign in to comment.