Skip to content

Commit ffd53d1

Browse files
committed
Fixes progress counter
1 parent 1ddbd90 commit ffd53d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/js/run.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ function checkStatus() {
111111
jQuery( '#wpe-progress' ).show();
112112

113113
// Display the current plugin count.
114-
jQuery( '#wpe-progress-count' ).text( ( obj.total - obj.count ) + '/' + obj.total );
114+
jQuery( '#wpe-progress-count' ).text( ( obj.total - obj.count + 1 ) + '/' + obj.total );
115115

116116
// Display the object being scanned.
117117
jQuery( '#wpe-progress-active' ).text( obj.activeJob );

0 commit comments

Comments
 (0)