You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[1.x] Fix abandoned-extensions sync never being scheduled
The sync command was registered onto `flarum.console.scheduled` in
ExtensionServiceProvider::boot(). ConsoleServiceProvider consumes that array
in its own boot() and is registered first, so the entry was appended too
late and the task was never scheduled. Move the command and schedule
registration into register() so it is present when the schedule is built.
Fixes#4705
0 commit comments