Skip to content

Commit

Permalink
feat: remove /files prefix from gateway url
Browse files Browse the repository at this point in the history
  • Loading branch information
jarrvis committed Jul 12, 2023
1 parent 3906185 commit abaaaa3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/api-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ export class ApiClient {
const me = this;
const config = {
method: 'get',
url: `${this._storageurl}/${this._filesDir}/${this._resourceId}`,
url: `${this._storageurl}/${this._resourceId}`,
responseType: this._responseType,
signal: this._cancelHook ? this._cancelHook.signal : null,
onDownloadProgress(progressEvent) {
Expand Down

0 comments on commit abaaaa3

Please sign in to comment.