Skip to content

Commit

Permalink
ATOR-240 - Fix onionoo response
Browse files Browse the repository at this point in the history
  • Loading branch information
yumirkov committed Apr 15, 2024
1 parent a7ddbcc commit efc0a7b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/OnionooService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ export class OnionooService {
}

async details(): Promise<any> {
return await axios.get(`${this.baseUrl}/details`);
const response = await axios.get(`${this.baseUrl}/details`).then();
return response.data;
}

}
Expand Down

0 comments on commit efc0a7b

Please sign in to comment.