From 890dacc27f6024c48d11dfa2801a2f97985e4d35 Mon Sep 17 00:00:00 2001 From: Thomas Bolt Date: Wed, 26 Jun 2013 09:49:24 +0200 Subject: [PATCH] Yahoo PlaceFinder response-encoding changed to UTF8 The encoding on the PlaceFinder-responses must be UTF8 to support special characters like german umlauts. --- NGeo/Yahoo/PlaceFinder/OAuthClient.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/NGeo/Yahoo/PlaceFinder/OAuthClient.cs b/NGeo/Yahoo/PlaceFinder/OAuthClient.cs index 8e489f9..c2e53b4 100644 --- a/NGeo/Yahoo/PlaceFinder/OAuthClient.cs +++ b/NGeo/Yahoo/PlaceFinder/OAuthClient.cs @@ -15,6 +15,7 @@ internal class OAuthClient : IDisposable internal OAuthClient() { _webClient = new WebClient(); + _webClient.Encoding = Encoding.UTF8; } ///