diff --git a/NzbDrone.Common/ReportingService.cs b/NzbDrone.Common/ReportingService.cs index 26ee20e6c..8c1dd5188 100644 --- a/NzbDrone.Common/ReportingService.cs +++ b/NzbDrone.Common/ReportingService.cs @@ -65,7 +65,7 @@ namespace NzbDrone.Common report.Stack = logEvent.Exception.StackTrace; report.ExceptionMessage = logEvent.Exception.Message; report.Logger = logEvent.LoggerName; - report.Type = logEvent.Exception.GetType().Name; + report.Type = logEvent.Exception.GetType().FullName; RestProvider.PostData(EXCEPTION_URL, report); } diff --git a/NzbDrone.Core.Test/Integeration/ServiceIntegerationFixture.cs b/NzbDrone.Core.Test/Integeration/ServiceIntegerationFixture.cs index 70c0f5465..2226082e7 100644 --- a/NzbDrone.Core.Test/Integeration/ServiceIntegerationFixture.cs +++ b/NzbDrone.Core.Test/Integeration/ServiceIntegerationFixture.cs @@ -28,7 +28,7 @@ namespace NzbDrone.Core.Test.Integeration _kernel.Bind().ToConstant(Db); Mocker.GetMock().SetupGet(s => s.ServiceRootUrl) - .Returns("http://stage.services.nzbdrone.com"); + .Returns("http://services.nzbdrone.com"); } diff --git a/package.bat b/package.bat index bdc39d334..3984a9331 100644 --- a/package.bat +++ b/package.bat @@ -1,7 +1,7 @@ SET PACKAGEROOT=_rawPackage SET TARGET=%PACKAGEROOT%\NzbDrone -rd %TARGET% /S /Q +rd %PACKAGEROOT% /S /Q del nzbdrone*.zip /Q /F @@ -50,6 +50,8 @@ del Mvc*.pdb /Q /F /S del *debug.js /Q /F /S del *-vsdoc.js /Q /F /S + + ..\Libraries\7zip\7za.exe a -tzip ..\NzbDrone.zip * CD .. \ No newline at end of file