Skip to content
This repository has been archived by the owner on Jul 28, 2021. It is now read-only.

Commit

Permalink
whoop
Browse files Browse the repository at this point in the history
  • Loading branch information
nrgill28 committed May 27, 2021
1 parent 64e4683 commit 767934a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions DatabaseUpdater/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,8 @@ private static void Main(string[] args)
JsonConvert.DefaultSettings = () => new JsonSerializerSettings {Converters = new List<JsonConverter> {new SemRangeConverter(), new SemVersionConverter()}};
_repo = new ModRepository("https://github.com/Deli-Collective/DeliCounter.Database/tree/main");
_ignoredMods = JsonConvert.DeserializeObject<List<string>>(File.ReadAllText("ModRepository/ignore_updates.json"));

lock (_queuedMods)
_queuedMods = new Queue<Mod>(_repo.Mods.Values);

_queuedMods = new Queue<Mod>(_repo.Mods.Values);

// Make our threads and start them
Thread[] threads = new Thread[8];
Expand Down

0 comments on commit 767934a

Please sign in to comment.