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');