Skip to content

Commit

Permalink
Fix 404 not found error (YARC-Official#527)
Browse files Browse the repository at this point in the history
Fixes 404 not found error when trying to test play in unity.
  • Loading branch information
Crafty-The-Fox authored Jul 16, 2023
1 parent af75bf6 commit 880143a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Assets/Script/ThirdParty/UpdateChecker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ private async void CheckForUpdates()
// Setup request
var request =
(HttpWebRequest) WebRequest.Create(
"https://api.github.com/repos/EliteAsian123/YARG/releases/latest");
"https://api.github.com/repos/YARC-Official/YARG/releases/latest");
request.UserAgent = "YARG";

// Sets up a cancellation token to cancel the request if needed (such as menu being hidden)
Expand Down Expand Up @@ -92,4 +92,4 @@ private async void CheckForUpdates()
}
}
}
}
}

0 comments on commit 880143a

Please sign in to comment.