From a7a270951737dab2ed3dc2a996d3cce435897ea7 Mon Sep 17 00:00:00 2001 From: Qstick Date: Sat, 10 Nov 2018 23:10:12 -0500 Subject: [PATCH] Fixed: Missing bracket in PlexTv Service query Co-Authored-By: Mark McDowall --- src/NzbDrone.Core/Notifications/Plex/PlexTv/PlexTvService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Notifications/Plex/PlexTv/PlexTvService.cs b/src/NzbDrone.Core/Notifications/Plex/PlexTv/PlexTvService.cs index 51b9aece6..1f5089a84 100644 --- a/src/NzbDrone.Core/Notifications/Plex/PlexTv/PlexTvService.cs +++ b/src/NzbDrone.Core/Notifications/Plex/PlexTv/PlexTvService.cs @@ -60,7 +60,7 @@ namespace NzbDrone.Core.Notifications.Plex.PlexTv .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", "#!");