Skip to content

Commit

Permalink
localhostではなくループバックアドレスを指定するようにした
Browse files Browse the repository at this point in the history
  • Loading branch information
nekopanda committed May 29, 2015
1 parent fb5d233 commit 05af424
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Grabacr07.KanColleWrapper/KanColleProxy.cs
Expand Up @@ -65,7 +65,7 @@ public void Startup(int proxy = 37564)
FiddlerApplication.Startup(proxy, FiddlerCoreStartupFlags.ChainToUpstreamGateway);
FiddlerApplication.BeforeRequest += this.SetUpstreamProxyHandler;

SetIESettings("localhost:" + proxy);
SetIESettings( "127.0.0.1:" + proxy );

this.compositeDisposable.Add(this.connectableSessionSource.Connect());
this.compositeDisposable.Add(this.apiSource.Connect());
Expand Down

0 comments on commit 05af424

Please sign in to comment.