Compare commits

...

2 Commits

Author SHA1 Message Date
ta264 154066ce0e
Merge 8ad1668bdf into 2e242aeb7b 2024-04-26 16:33:59 +02:00
Bogdan 2e242aeb7b Database corruption message linking to wiki 2024-04-25 11:30:05 +03:00
1 changed files with 2 additions and 2 deletions

View File

@ -16,12 +16,12 @@ namespace NzbDrone.Core.Datastore
}
public CorruptDatabaseException(string message, Exception innerException, params object[] args)
: base(message, innerException, args)
: base(innerException, message, args)
{
}
public CorruptDatabaseException(string message, Exception innerException)
: base(message, innerException)
: base(innerException, message)
{
}
}