From 532e14040bae5e954f3fc17e35ee97e06b79c88b Mon Sep 17 00:00:00 2001 From: Qstick Date: Thu, 14 Dec 2017 23:49:07 -0500 Subject: [PATCH] Fix: DatabaseCorruptException should slow startup loop --- src/NzbDrone.Core/Datastore/CorruptDatabaseException.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/Datastore/CorruptDatabaseException.cs b/src/NzbDrone.Core/Datastore/CorruptDatabaseException.cs index 1d8b6696d..ba73f6b5c 100644 --- a/src/NzbDrone.Core/Datastore/CorruptDatabaseException.cs +++ b/src/NzbDrone.Core/Datastore/CorruptDatabaseException.cs @@ -1,9 +1,9 @@ -using System; +using System; using NzbDrone.Common.Exceptions; namespace NzbDrone.Core.Datastore { - public class CorruptDatabaseException : NzbDroneException + public class CorruptDatabaseException : LidarrStartupException { public CorruptDatabaseException(string message, params object[] args) : base(message, args) {