From 2e115ac53337b4d887b93cf9f7d3e523bd2bd097 Mon Sep 17 00:00:00 2001 From: linguist <22963968+lowlighter@users.noreply.github.com> Date: Sun, 3 Jan 2021 00:01:58 +0100 Subject: [PATCH] Fix plugin stars limit --- source/app/action/index.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/app/action/index.mjs b/source/app/action/index.mjs index 41fa6838..3ef0ddd4 100644 --- a/source/app/action/index.mjs +++ b/source/app/action/index.mjs @@ -210,7 +210,7 @@ info(`Tweets ${option}`, q[`tweets.${option}`] = input.number(`plugin_tweets_${option}`)) } //Stars - if (plugins.posts.enabled) { + if (plugins.stars.enabled) { for (const option of ["limit"]) info(`Stars ${option}`, q[`stars.${option}`] = input.number(`plugin_stars_${option}`)) }