Skip to content

Commit 824d8ce

Browse files
committed
Release v2.6.1
1 parent 9f7fec4 commit 824d8ce

4 files changed

Lines changed: 6 additions & 8 deletions

File tree

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "flow.js",
3-
"version": "2.6.0",
3+
"version": "2.6.1",
44
"main": "./dist/flow.js",
55
"ignore": [
66
"**/.*",

dist/flow.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1245,8 +1245,6 @@
12451245
return;
12461246
case 1:
12471247
return;
1248-
case 2:
1249-
break;
12501248
}
12511249
}
12521250
if (this.flowObj.opts.testChunks && !this.tested) {
@@ -1293,7 +1291,7 @@
12931291
* @returns {string} 'pending', 'uploading', 'success', 'error'
12941292
*/
12951293
status: function () {
1296-
if (this.pendingRetry) {
1294+
if (this.pendingRetry || this.preprocessState === 1) {
12971295
// if pending retry then that's effectively the same as actively uploading,
12981296
// there might just be a slight delay before the retry starts
12991297
return 'uploading';
@@ -1508,7 +1506,7 @@
15081506
* Library version
15091507
* @type {string}
15101508
*/
1511-
Flow.version = '2.6.0';
1509+
Flow.version = '2.6.1';
15121510

15131511
if ( typeof module === "object" && module && typeof module.exports === "object" ) {
15141512
// Expose Flow as module.exports in loaders that implement the Node

0 commit comments

Comments
 (0)