Browse Source

update connect entry point

Luke Pulverenti 9 years ago
parent
commit
8e96c5b868
1 changed files with 1 additions and 1 deletions
  1. 1 1
      MediaBrowser.Server.Implementations/Connect/ConnectEntryPoint.cs

+ 1 - 1
MediaBrowser.Server.Implementations/Connect/ConnectEntryPoint.cs

@@ -43,7 +43,7 @@ namespace MediaBrowser.Server.Implementations.Connect
         {
             Task.Run(() => LoadCachedAddress());
 
-            _timer = new Timer(TimerCallback, null, TimeSpan.FromSeconds(5), TimeSpan.FromHours(2));
+            _timer = new Timer(TimerCallback, null, TimeSpan.FromSeconds(5), TimeSpan.FromHours(3));
         }
 
         private readonly string[] _ipLookups = { "http://bot.whatismyipaddress.com", "https://connect.emby.media/service/ip" };