Skip to content
This repository has been archived by the owner on Mar 17, 2018. It is now read-only.

Commit

Permalink
Fixed auto updating not working
Browse files Browse the repository at this point in the history
  • Loading branch information
ikkentim committed May 16, 2016
1 parent b318839 commit 1c7a121
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public override async Task Run(CancellationToken token)
for (var index = 0; index < mods.Length; index++)
{
var mod = mods[index];
if (!mod.Information.IsDevelopment || mod.Id == null)
if (mod.Information.IsDevelopment || mod.Id == null)
continue;

UpdateStatus($"{index + 1}/{mods.Length}: Checking mod: {mod.Name}...", (int)(index * (100.0f/mods.Length)), TaskStatus.Running);
Expand Down

0 comments on commit 1c7a121

Please sign in to comment.