Skip to content

Commit

Permalink
Update CheckForUpdateHandler.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
leMicin authored Aug 31, 2021
1 parent 008f57b commit 0b7a01c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ await mediator.Publish(new InitializationProgressed(100)
private async Task<GithubRelease> GetLatestRelease()
{
// Get List of releases
var listResponse = await githubClient.Client.GetAsync("/repos/domialex/Sidekick/releases");
var listResponse = await githubClient.Client.GetAsync("/repos/Sidekick-Poe/Sidekick/releases");
if (listResponse.IsSuccessStatusCode)
{
var githubReleaseList = await JsonSerializer.DeserializeAsync<GithubRelease[]>(await listResponse.Content.ReadAsStreamAsync(), new JsonSerializerOptions { IgnoreNullValues = true, PropertyNameCaseInsensitive = true });
Expand Down

0 comments on commit 0b7a01c

Please sign in to comment.