From 245e122c6189399a88ae7e010738f37f77d04887 Mon Sep 17 00:00:00 2001 From: "kay.one" Date: Wed, 29 Feb 2012 23:03:19 -0800 Subject: [PATCH] Fixed service url --- NzbDrone.Common/ReportingService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NzbDrone.Common/ReportingService.cs b/NzbDrone.Common/ReportingService.cs index 7faf928b2..0ab413e17 100644 --- a/NzbDrone.Common/ReportingService.cs +++ b/NzbDrone.Common/ReportingService.cs @@ -10,7 +10,7 @@ namespace NzbDrone.Common { private static readonly Logger logger = LogManager.GetCurrentClassLogger(); - private const string SERVICE_URL = "http://stage.services.nzbdrone.com/reporting"; + private const string SERVICE_URL = "http://services.nzbdrone.com/reporting"; private const string PARSE_URL = SERVICE_URL + "/ParseError"; private const string EXCEPTION_URL = SERVICE_URL + "/ReportException";