Skip to content
This repository has been archived by the owner on Oct 5, 2024. It is now read-only.

Commit

Permalink
Fix app update
Browse files Browse the repository at this point in the history
  • Loading branch information
errortek committed Jul 12, 2024
1 parent 5c5b053 commit c831723
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions ReboundSysInfo/Views/Settings/AppUpdateSettingPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,8 @@ private async void CheckForUpdateAsync()
{
try
{
//Todo: Fix UserName and Repo
string username = "";
string repo = "";
string username = "Ivirius-Main";
string repo = "ReboundSysInfo";
TxtLastUpdateCheck.Text = DateTime.Now.ToShortDateString();
Settings.LastUpdateCheck = DateTime.Now.ToShortDateString();
var update = await UpdateHelper.CheckUpdateAsync(username, repo, new Version(App.Current.AppVersion));
Expand Down

0 comments on commit c831723

Please sign in to comment.