Misc readability improvement

This commit is contained in:
JustArchi
2017-01-05 21:08:13 +01:00
parent ab020ed5a2
commit bdc354d07c
4 changed files with 24 additions and 7 deletions

View File

@@ -66,7 +66,10 @@ namespace ArchiSteamFarm {
}
if ((AutoUpdatesTimer == null) && Program.GlobalConfig.AutoUpdates) {
AutoUpdatesTimer = new Timer(async e => await CheckForUpdate().ConfigureAwait(false), null, TimeSpan.FromDays(1), // Delay
AutoUpdatesTimer = new Timer(
async e => await CheckForUpdate().ConfigureAwait(false),
null,
TimeSpan.FromDays(1), // Delay
TimeSpan.FromDays(1) // Period
);