Compare commits

...

2 Commits

Author SHA1 Message Date
Ivan Sanz Carasa 24d7137a6d
Merge 1b7211214f into c8a6b9f565 2024-04-25 09:17:18 +00:00
Bogdan c8a6b9f565 Database corruption message linking to wiki 2024-04-25 11:29:26 +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)
{
}
}