Compare commits

..

3 Commits

Author SHA1 Message Date
Bogdan d67653499f
Merge f3b4114f93 into 2e242aeb7b 2024-04-25 19:40:01 +00:00
Bogdan f3b4114f93 Import album extras for manual imports and downloads
Co-authored-by: TTY Teapot <ttdev@protonmail.com>
2024-04-25 22:39:51 +03: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)
{
}
}