mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-03-29 19:51:20 -04:00
Fix redirect to wrong view after mark as read (#8552)
fix https://github.com/FreshRSS/FreshRSS/issues/6509 A wrong redirect (to normal view) happened in case of both the big mark as read button on the bottom and the navbar one, for reader and global views.
This commit is contained in:
@@ -200,7 +200,7 @@ class FreshRSS_entry_Controller extends FreshRSS_ActionController {
|
||||
$is_read ? _t('feedback.sub.articles.marked_read') : _t('feedback.sub.articles.marked_unread'),
|
||||
[
|
||||
'c' => 'index',
|
||||
'a' => 'index',
|
||||
'a' => Minz_Request::paramStringNull('from') ?? 'index',
|
||||
'params' => $params,
|
||||
],
|
||||
notificationName: 'readAction ',
|
||||
|
||||
Reference in New Issue
Block a user