From f0aa960c00e885f0230ee6a17a4d74483f117ff6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Mon, 16 Dec 2024 11:36:06 -0500 Subject: [PATCH] fix: closes #12980, properly reset all plugins with `./nodebb reset -a` --- src/cli/reset.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/reset.js b/src/cli/reset.js index a05519b101..2a009e85d9 100644 --- a/src/cli/reset.js +++ b/src/cli/reset.js @@ -49,7 +49,7 @@ exports.reset = async function (options) { all: async function () { await resetWidgets(); await resetThemes(); - await resetPlugin(); + await resetPlugins(); await resetSettings(); }, };