Skip to content

Commit b66be8c

Browse files
authored
Merge pull request #165 from taooceros/FixEncoding
Fix Encoding Error
2 parents 1e4bc07 + 88bc9a2 commit b66be8c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Flow.Launcher/App.xaml.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using System;
22
using System.Diagnostics;
3+
using System.Text;
34
using System.Threading.Tasks;
45
using System.Timers;
56
using System.Windows;
@@ -85,6 +86,8 @@ private void OnStartup(object sender, StartupEventArgs e)
8586

8687
Http.Proxy = _settings.Proxy;
8788

89+
Encoding.RegisterProvider(CodePagesEncodingProvider.Instance);
90+
8891
RegisterExitEvents();
8992

9093
AutoStartup();

0 commit comments

Comments
 (0)