From f4375e9da9ba98f5d49b989fa5ae47a57dab22e8 Mon Sep 17 00:00:00 2001 From: witzig Date: Thu, 28 Sep 2017 01:34:34 +0200 Subject: [PATCH] Update import type display --- routes/lists.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/lists.js b/routes/lists.js index 94b3f788..799bf5b4 100644 --- a/routes/lists.js +++ b/routes/lists.js @@ -285,7 +285,7 @@ router.get('/view/:id', passport.csrfProtection, (req, res) => { list.imports = imports.map((entry, i) => { entry.index = i + 1; - entry.importType = entry.type === 1 ? _('Subscribe') : _('Unsubscribe'); + entry.importType = entry.type === 0 ? _('Force Subscribe') : (entry.type === 1 ? _('Subscribe') : _('Unsubscribe')); switch (entry.status) { case 0: entry.importStatus = _('Initializing');