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

@ -260,7 +260,7 @@ namespace DiscordChatExporter.Gui.ViewModels
var chatLog = await _chatLogService.GetChatLogAsync(token, guild, channel, from, to, progressHandler);
// Export
_exportService.Export(format, filePath, chatLog);
_exportService.Export(chatLog, filePath, format);
// Open
Process.Start(filePath);