Emoji preset message: warn instead of error

This commit is contained in:
pizzaboxer 2024-05-05 11:51:21 +01:00 committed by GitHub
parent 052324d276
commit 7ece6517e8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1196,7 +1196,7 @@ namespace Bloxstrap
catch (HttpRequestException ex)
{
App.Logger.WriteLine(LOG_IDENT, $"Failed to fetch emoji preset from Github: {ex}");
Frontend.ShowMessageBox(string.Format(Strings.Bootstrapper_EmojiPresetFetchFailed, App.Settings.Prop.EmojiType), MessageBoxImage.Error);
Frontend.ShowMessageBox(string.Format(Strings.Bootstrapper_EmojiPresetFetchFailed, App.Settings.Prop.EmojiType), MessageBoxImage.Warning);
App.Settings.Prop.EmojiType = EmojiType.Default;
}
}