Skip to content

Commit

Permalink
Optimize upload speed, depends on libuwsc-2.0.4
Browse files Browse the repository at this point in the history
Signed-off-by: Jianhui Zhao <jianhuizhao329@gmail.com>
  • Loading branch information
Jianhui Zhao committed Jun 18, 2018
1 parent 7c7cd8a commit 2761788
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions html/src/components/Rtty.vue
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export default {
}
}
],
upfile: {modal: false, file: null, step: 2048, pos: 0, percent: 0, loading: false},
upfile: {modal: false, file: null, step: 8192, pos: 0, percent: 0, loading: false},
downfile: {modal: false, loading: true, pathname: '/', filelist: [], filelistFiltered: [], downing: false, percent: 0, filter: ''},
}
},
Expand All @@ -126,7 +126,7 @@ export default {
return;
if (name == 'upfile') {
this.upfile = {modal: true, file: null, step: 2048, pos: 0, percent: 0, loading: false};
this.upfile = {modal: true, file: null, step: 8192, pos: 0, percent: 0, loading: false};
} else if (name == 'downfile') {
this.downfile = {modal: true, loading: true, path: [], pathname: '/', filelist: [], downing: false, percent: 0, filter: ''};
let msg = rttyMsgInit('DOWNFILE', {sid: this.sid});
Expand Down

0 comments on commit 2761788

Please sign in to comment.