mirror of
https://github.com/lidarr/Lidarr
synced 2025-02-26 07:42:49 +00:00
Fixed: Missing bracket in PlexTv Service query
Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
This commit is contained in:
parent
0c1f9e6c8d
commit
a7a2709517
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ public PlexTvSignInUrlResponse GetSignInUrl(string callbackUrl, int pinId, strin
|
|||
.AddQueryParam("context[device][product]", "Lidarr")
|
||||
.AddQueryParam("context[device][platform]", "Windows")
|
||||
.AddQueryParam("context[device][platformVersion]", "7")
|
||||
.AddQueryParam("context[device][version", BuildInfo.Version.ToString());
|
||||
.AddQueryParam("context[device][version]", BuildInfo.Version.ToString());
|
||||
|
||||
// #! is stripped out of the URL when building, this works around it.
|
||||
requestBuilder.Segments.Add("hashBang", "#!");
|
||||
|
|
Loading…
Reference in a new issue