We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e97c1e commit 06cf829Copy full SHA for 06cf829
src/services/apiProxy.ts
@@ -10,7 +10,7 @@ class ApiProxyService {
10
11
// Method to fetch the GitHub release data.
12
async fetchReleaseData(releaseId: string | number): Promise<any> {
13
- const endpoint = `https://api.github.com/repos/Pymmdrza/Rich-Address-Wallet/releases/${releaseId}`;
+ const endpoint = `https://api.github.com/repos/Pymmdrza/Rich-Address-Wallet/releases/${releaseId}/assets`;
14
// Use the existing proxyRequest method. This is MUCH better.
15
try {
16
const response = await this.proxyRequest(endpoint, {
0 commit comments