Skip to content

Commit 6dfd1f5

Browse files
authored
Merge branch 'develop' into ari/branding
2 parents 3d3ce98 + cbe861a commit 6dfd1f5

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
= 1.9.0 =
2+
3+
Bugs we fixed:
4+
5+
* Fix missing content and streak badges after they are all completed.
6+
7+
18
= 1.8.0 =
29

310
Enhancements:

classes/admin/widgets/class-badge-streak.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public function get_details( $context ) {
3737
// Get the badge to display.
3838
foreach ( $badges as $badge ) {
3939
$progress = $badge->get_progress();
40-
if ( 100 > $progress['progress'] ) {
40+
if ( 100 >= $progress['progress'] ) {
4141
$result[ $context ] = $badge;
4242
break;
4343
}

0 commit comments

Comments
 (0)