Skip to content

Commit 30020e9

Browse files
committed
quick-fix for file-streaming
1 parent 5973d70 commit 30020e9

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

src/Templates/Public/scripts/default.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,11 @@ function bindFileStreams() {
117117
}
118118
}
119119
},
120-
error: function() {
120+
error: function(err) {
121+
if (err.status == 416) {
122+
return;
123+
}
124+
121125
hideSpinner($(e).closest('div.file-stream'));
122126
$(e).attr('pode-streaming', '0');
123127
addClass($(e).closest('div.file-stream'), 'stream-error');

0 commit comments

Comments
 (0)