diff options
author | Grant Limberg <grant.limberg@zerotier.com> | 2016-11-28 09:40:34 -0800 |
---|---|---|
committer | Grant Limberg <grant.limberg@zerotier.com> | 2016-11-28 09:40:34 -0800 |
commit | 84729185590363980a18591f32b10e20fa40cabc (patch) | |
tree | 96b24b853dd658693e7828ca37a498d12adc2100 /macui | |
parent | ae8f51d6089d6f532be35466fc708dcb15a619db (diff) | |
download | infinitytier-84729185590363980a18591f32b10e20fa40cabc.tar.gz infinitytier-84729185590363980a18591f32b10e20fa40cabc.zip |
Change 'localhost' to 127.0.0.1
@makerspherehq reported it not working as 'localhost' via Twitter
Diffstat (limited to 'macui')
-rw-r--r-- | macui/ZeroTier One/ServiceCom.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macui/ZeroTier One/ServiceCom.m b/macui/ZeroTier One/ServiceCom.m index 4982d40e..dd03b3f7 100644 --- a/macui/ZeroTier One/ServiceCom.m +++ b/macui/ZeroTier One/ServiceCom.m @@ -43,7 +43,7 @@ { self = [super init]; if(self) { - baseURL = @"http://localhost:9993"; + baseURL = @"http://127.0.0.1:9993"; session = [NSURLSession sessionWithConfiguration:[NSURLSessionConfiguration ephemeralSessionConfiguration]]; _isQuitting = NO; } |