From bbaa5f9fa89d75827d75fe8eb1e8b0a8212cb9db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Burak=20Kaan=20K=C3=B6se?= Date: Tue, 21 May 2024 23:07:15 +0200 Subject: [PATCH] Fix invisible signature page content. --- Wino.Mail/Views/Settings/SignatureManagementPage.xaml.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Wino.Mail/Views/Settings/SignatureManagementPage.xaml.cs b/Wino.Mail/Views/Settings/SignatureManagementPage.xaml.cs index 41e84625..571eaf8a 100644 --- a/Wino.Mail/Views/Settings/SignatureManagementPage.xaml.cs +++ b/Wino.Mail/Views/Settings/SignatureManagementPage.xaml.cs @@ -246,8 +246,8 @@ namespace Wino.Views.Settings { var editorBundlePath = (await ViewModel.NativeAppService.GetQuillEditorBundlePathAsync()).Replace("full.html", string.Empty); - Chromium.CoreWebView2.SetVirtualHostNameToFolderMapping("app.reader", editorBundlePath, CoreWebView2HostResourceAccessKind.Allow); - Chromium.Source = new Uri("https://app.reader/full.html"); + Chromium.CoreWebView2.SetVirtualHostNameToFolderMapping("app.example", editorBundlePath, CoreWebView2HostResourceAccessKind.Allow); + Chromium.Source = new Uri("https://app.example/full.html"); Chromium.CoreWebView2.DOMContentLoaded -= DOMLoaded; Chromium.CoreWebView2.DOMContentLoaded += DOMLoaded;