Skip to content

Commit

Permalink
Culture fix/hack in SnipePokemonTask.cs (#1360)
Browse files Browse the repository at this point in the history
Replace "," with "." in URL.
  • Loading branch information
StealthyXor authored and Yamashi committed Jul 29, 2016
1 parent 37c30d1 commit 583e1ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PoGo.NecroBot.Logic/Tasks/SnipePokemonTask.cs
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ private static ScanResult SnipeScanForPokemon(Location location)
ScanResult scanResult;
try
{
var request = WebRequest.CreateHttp(uri);
var request = WebRequest.CreateHttp(uri.Replace(',', '.'));
request.Accept = "application/json";
request.Method = "GET";

Expand Down

0 comments on commit 583e1ad

Please sign in to comment.