Stop redundantly downloading media when re-exporting (#395)

This commit is contained in:
Andrew Kolos
2020-10-23 09:38:15 -04:00
committed by GitHub
parent 949c9d3f1e
commit 520e023aff
9 changed files with 70 additions and 8 deletions

View File

@@ -37,6 +37,12 @@ namespace DiscordChatExporter.Gui.ViewModels.Dialogs
get => _settingsService.ParallelLimit;
set => _settingsService.ParallelLimit = value.Clamp(1, 10);
}
public bool ShouldReuseMedia
{
get => _settingsService.ShouldReuseMedia;
set => _settingsService.ShouldReuseMedia = value;
}
public SettingsViewModel(SettingsService settingsService)
{