0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00

Fixed update check due to tiers service changes (#16832)

refs https://github.com/TryGhost/Team/issues/3234

The update check was failing to run due to recent changes in the tiers
service. This service now needs initialising before the update check can
be run.
This commit is contained in:
Michael Barrett 2023-05-19 10:27:33 +01:00 committed by GitHub
parent ca46308abe
commit 19f3700ae8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -40,6 +40,9 @@ if (parentPort) {
const settings = require('./services/settings/settings-service');
await settings.init();
const tiers = require('./services/tiers');
await tiers.init();
// Finished INIT
await updateCheck({