1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-27 18:17:13 +00:00

Fix: DatabaseCorruptException should slow startup loop

This commit is contained in:
Qstick 2017-12-14 23:49:07 -05:00
parent 5f75c6046b
commit 532e14040b

View file

@ -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)
{