Change order of parameters in ExportService.Export

This commit is contained in:
Oleksii Holub
2018-10-31 17:35:28 +02:00
parent bcad5b4ed1
commit 52684c264f
4 changed files with 5 additions and 5 deletions

View File

@@ -42,7 +42,7 @@ namespace DiscordChatExporter.Cli.Verbs
}
// Export
exportService.Export(Options.ExportFormat, filePath, chatLog);
exportService.Export(chatLog, filePath, Options.ExportFormat);
// Print result
Console.WriteLine($"Exported chat to [{filePath}]");