add null check to PeriodicTimer

This commit is contained in:
Luke Pulverenti 2016-01-28 22:42:03 -05:00
parent 3510ef3d2b
commit 3268de0edf
2 changed files with 6 additions and 1 deletions

View File

@ -14,6 +14,11 @@ namespace MediaBrowser.Common.Threading
public PeriodicTimer(Action<object> callback, object state, TimeSpan dueTime, TimeSpan period)
{
if (callback == null)
{
throw new ArgumentNullException("callback");
}
Callback = callback;
_period = period;
_state = state;

View File

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