Skip to content

Commit 82d6194

Browse files
committed
Fixed debug download uri
1 parent 0556172 commit 82d6194

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

cut-fe/src/views/View.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -209,8 +209,7 @@ export default Vue.extend({
209209
this.file.name = data.name;
210210
this.file.size = metadata.size;
211211
this.file.type = metadata.type;
212-
this.file.download = `http://localhost:9090/raw/${data.hash}`;
213-
// this.file.download = `${window.origin}/raw/${data.hash}`;
212+
this.file.download = `${window.origin}/raw/${data.hash}`;
214213
break;
215214
default:
216215
this.pageLoadStatus = STATUS.ERROR;

0 commit comments

Comments
 (0)