From a8deaf85c0447036c1247b89cf23246469556584 Mon Sep 17 00:00:00 2001 From: Qstick Date: Sun, 28 Jun 2020 23:08:59 -0400 Subject: [PATCH] Fixed: Bootloop due to bad format args in AppFolderFactory Fixes #4553 --- src/NzbDrone.Common/EnvironmentInfo/AppFolderFactory.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Common/EnvironmentInfo/AppFolderFactory.cs b/src/NzbDrone.Common/EnvironmentInfo/AppFolderFactory.cs index 3b66c02f8..6d5eb9135 100644 --- a/src/NzbDrone.Common/EnvironmentInfo/AppFolderFactory.cs +++ b/src/NzbDrone.Common/EnvironmentInfo/AppFolderFactory.cs @@ -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()); } }