Output date range in the export file

Closes #56
This commit is contained in:
Oleksii Holub
2018-06-25 18:44:50 +03:00
parent df811d0b1a
commit e4f0b8193f
6 changed files with 36 additions and 8 deletions

View File

@@ -237,7 +237,7 @@ namespace DiscordChatExporter.Gui.ViewModels
var mentionables = await _dataService.GetMentionablesAsync(token, guild.Id, messages);
// Create log
var log = new ChatLog(guild, channel, messageGroups, mentionables);
var log = new ChatLog(guild, channel, from, to, messageGroups, mentionables);
// Export
_exportService.Export(format, filePath, log);