Updated sqlite to the latests official builds

This commit is contained in:
kay.one 2011-05-30 00:05:45 -07:00
commit 6ade4b4bd7
23 changed files with 34058 additions and 3645 deletions

View file

@ -1,5 +1,5 @@
using System;
using System.Data.SQLite;
using System.Data.Common;
using System.Reflection;
using System.Threading;
using System.Web;
@ -74,7 +74,7 @@ namespace NzbDrone.Web
Logger.FatalException(lastError.Message + Environment.NewLine + Request.Url.PathAndQuery, lastError);
if (lastError is SQLiteException)
if (lastError is DbException)
{
Logger.Warn("Restarting application");
HttpRuntime.UnloadAppDomain();