Skip to content

Commit ab6d876

Browse files
authored
[garbage-collector] Activate the feature by default. (#677)
1 parent e81b46a commit ab6d876

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

includes/class-freemius.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1357,8 +1357,7 @@ function _plugins_loaded() {
13571357
}
13581358

13591359
function _run_garbage_collector() {
1360-
// @todo - Remove this check once the garbage collector is ready to be out of beta.
1361-
if ( true !== fs_get_optional_constant( 'WP_FS__ENABLE_GARBAGE_COLLECTOR', false ) ) {
1360+
if ( true !== fs_get_optional_constant( 'WP_FS__ENABLE_GARBAGE_COLLECTOR', true ) ) {
13621361
return;
13631362
}
13641363

start.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*
1616
* @var string
1717
*/
18-
$this_sdk_version = '2.6.1';
18+
$this_sdk_version = '2.6.1.1';
1919

2020
#region SDK Selection Logic --------------------------------------------------------------------
2121

0 commit comments

Comments
 (0)