We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently we have page https://coh3stats.com/desktop-app which shows amount of downloads.
However this counts only latest release from https://github.com/cohstats/coh3-stats-desktop-app/releases
We want to count downloads of all the latest releases. We are counting it here https://github.com/cohstats/coh3-stats/blob/master/pages/desktop-app.tsx#L91
The API link looks like this https://api.github.com/repos/cohstats/coh3-stats-desktop-app/releases In the code we use https://api.github.com/repos/cohstats/coh3-stats-desktop-app/releases/latest Which means that we might want to remove /latest from the code.
/latest
Now it will return array of objects instead of single object.
Implementation:
.sig
If you have any questions feel free to ask.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently we have page https://coh3stats.com/desktop-app which shows amount of downloads.
However this counts only latest release from https://github.com/cohstats/coh3-stats-desktop-app/releases
We want to count downloads of all the latest releases.
We are counting it here https://github.com/cohstats/coh3-stats/blob/master/pages/desktop-app.tsx#L91
The API link looks like this
https://api.github.com/repos/cohstats/coh3-stats-desktop-app/releases
In the code we use https://api.github.com/repos/cohstats/coh3-stats-desktop-app/releases/latest
Which means that we might want to remove
/latest
from the code.Now it will return array of objects instead of single object.
Implementation:
.sig
as we have in the code.If you have any questions feel free to ask.
The text was updated successfully, but these errors were encountered: