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

Commit 1c7a121

Browse files
committed
Fixed auto updating not working
1 parent b318839 commit 1c7a121

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ParkitectNexus.Data/Tasks/Prefab/CheckForUpdatesTask.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public override async Task Run(CancellationToken token)
6666
for (var index = 0; index < mods.Length; index++)
6767
{
6868
var mod = mods[index];
69-
if (!mod.Information.IsDevelopment || mod.Id == null)
69+
if (mod.Information.IsDevelopment || mod.Id == null)
7070
continue;
7171

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

0 commit comments

Comments
 (0)