We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 492aee3 commit 645386aCopy full SHA for 645386a
1 file changed
OculusDB/FrontendServer.cs
@@ -772,7 +772,7 @@ public void StartServer(HttpServer httpServer)
772
if (!DoesUserHaveAccess(request)) return true;
773
WebClient c = new WebClient();
774
c.Headers.Add("User-Agent", "OculusDB/1.0");
775
- List<GithubCommit> commits = JsonSerializer.Deserialize<List<GithubCommit>>(c.DownloadString("https://api.github.com/repos/ComputerElite/OculusDB/commits?per_page=100"));
+ List<GithubCommit> commits = JsonSerializer.Deserialize<List<GithubCommit>>(c.DownloadString("https://api.github.com/repos/ComputerElite/OculusDB/commits?per_page=100&sha=OculusDB-current"));
776
List<Update> updates = new List<Update>();
777
foreach(GithubCommit co in commits)
778
{
0 commit comments