1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 12:02:35 +02:00

Fixed: Bootloop due to bad format args in AppFolderFactory

Fixes #4553
This commit is contained in:
Qstick 2020-06-28 23:08:59 -04:00
parent f069801eba
commit a8deaf85c0

View File

@ -117,7 +117,7 @@ private void MigrateAppDataFolder()
catch (Exception ex)
{
_logger.Debug(ex, ex.Message);
throw new RadarrStartupException("Unable to migrate DB from nzbdrone.db to {1}. Migrate manually", _appFolderInfo.GetDatabase());
throw new RadarrStartupException("Unable to migrate DB from nzbdrone.db to {0}. Migrate manually", _appFolderInfo.GetDatabase());
}
}