0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-27 22:49:56 -05:00

Fixed extra quote in logging line

- spotted in logs
This commit is contained in:
Daniel Lockyer 2023-11-13 16:12:09 +01:00 committed by Daniel Lockyer
parent 2b591d9b6f
commit 3513ef3032

View file

@ -52,7 +52,7 @@ const listen = async () => {
const overLimit = await limitService.checkWouldGoOverLimit('customIntegrations');
if (overLimit) {
logging.info(`Skipped subscribing webhooks to events. The "customIntegrations" plan limit is enabled."`);
logging.info(`Skipped subscribing webhooks to events. The "customIntegrations" plan limit is enabled.`);
return;
}
}