Skip to content

Commit

Permalink
Merge pull request #74 from fxsth/master
Browse files Browse the repository at this point in the history
Include ipv6 addresses in resource connections
  • Loading branch information
jensenkd authored Jul 6, 2022
2 parents 44db9c3 + 9cf359b commit 8a29315
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 8a29315

Please sign in to comment.