From 6e3b9d209cd599311e34c280e5fc5c974c4b5aa7 Mon Sep 17 00:00:00 2001 From: witzig Date: Sun, 1 Oct 2017 21:36:11 +0200 Subject: [PATCH] Fix 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 c725b2fb..96943ff2 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 === 0 ? _('Force Subscribe') : (entry.type === 1 ? _('Subscribe') : _('Unsubscribe')); + entry.importType = entry.type === 0 ? _('Subscribe') : (entry.type === 1 ? _('Force Subscribe') : _('Unsubscribe')); switch (entry.status) { case 0: entry.importStatus = _('Initializing');