diff --git a/Greenshot/Forms/MainForm.cs b/Greenshot/Forms/MainForm.cs index 9127b3462..b2f7f0459 100644 --- a/Greenshot/Forms/MainForm.cs +++ b/Greenshot/Forms/MainForm.cs @@ -89,7 +89,7 @@ namespace Greenshot { LOG.Info("Firstlaunch: " + coreConfiguration.IsFirstLaunch); LOG.Info("Destinations:"); if (coreConfiguration.OutputDestinations != null) { - foreach(Destinations destination in coreConfiguration.OutputDestinations) { + foreach(string destination in coreConfiguration.OutputDestinations) { LOG.Info("\t" + destination); } }