0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-10 23:36:14 -05:00

Removed unused parameter from isFinished method

no issue

- The disableDbReadyEvent variable does nothing here, no need to keep junk around :)
This commit is contained in:
Naz 2021-11-23 20:30:30 +04:00 committed by naz
parent 6ee94f66b4
commit aee949bbf4

View file

@ -1,6 +1,6 @@
const urlService = require('../../core/server/services/url');
module.exports.isFinished = async (options = {disableDbReadyEvent: false}) => {
module.exports.isFinished = async () => {
let timeout;
return new Promise(function (resolve) {