CRON in Config Being Removed After Publish

Wappler Version : 7.9.7
Operating System : Win11
Server Model: NodeJS
Database Type: MariaDB
Hosting Type: Dedicated Server (Windows Server)

Expected behavior

What do you think should happen?

CRON settings to allow scheduler should be present on the server after publish

Actual behavior

What actually happens?

CRON settings in config file are removed

How to reproduce

in Server Actions Go into settings, de-select 'Enable Scheduler' for local, then save. Then select 'Enable Scheduler' for remote then click save.

Publish to remote server, restart NodeJS service on the server. When checked manually, the local 'config' file is like this:

{
  "debug": true,
  "cron": false,
  "secret": "12345xxxxx",
  "session": {
    "store": {
      "$type": "database",
      "knex": "xxxxxxxxx"
    }
  },
  "stripe": { 

the 'remote' config file is like this:

{
  "debug": true,
   "secret": "12345xxxxx",
  "session": {
    "store": {
      "$type": "database",
      "knex": "xxxxxxxxx"
    }
  },
  "stripe": { 

The 'cron' setting is completely missing.

This means my dozens of daily scheduled tasks stop running. the remote should be including "cron": false,

Any idea on what could cause this?