From 804f1f76e8609bd4c5a1f755d70beb4ece76fef3 Mon Sep 17 00:00:00 2001 From: C1rdec Date: Mon, 1 May 2023 15:57:07 -0400 Subject: [PATCH] Initialize GithubServie on start --- src/Lurker.UI/ViewModels/ShellViewModel.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/Lurker.UI/ViewModels/ShellViewModel.cs b/src/Lurker.UI/ViewModels/ShellViewModel.cs index c808955e..23e533c3 100644 --- a/src/Lurker.UI/ViewModels/ShellViewModel.cs +++ b/src/Lurker.UI/ViewModels/ShellViewModel.cs @@ -682,6 +682,12 @@ private async void Start(int process) } this.ShowOverlays(process); + + // Initialize Github + var githubService = IoC.Get(); + await githubService.Gems(); + await githubService.Uniques(); + await this.CheckForUpdate(); await this.CheckPledgeStatus();