aboutsummaryrefslogtreecommitdiff
path: root/app/Models
diff options
context:
space:
mode:
Diffstat (limited to 'app/Models')
-rw-r--r--app/Models/Context.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/app/Models/Context.php b/app/Models/Context.php
index 8634b5e71..26212a0ef 100644
--- a/app/Models/Context.php
+++ b/app/Models/Context.php
@@ -541,6 +541,14 @@ final class FreshRSS_Context {
// If there is no more unread category, show main stream
self::$next_get = $another_unread_id == '' ? 'a' : 'c_' . $another_unread_id;
break;
+ case 't':
+ // We can't know what the next unread tag is because entries can be in multiple tags
+ // so marking all entries in a tag can indirectly mark all entries in multiple tags.
+ // Default is to return to the current tag, so mark it as next_get = 'a' instead when
+ // userconf -> onread_jump_next so the readAction knows to jump to the next unread
+ // tag.
+ self::$next_get = 'a';
+ break;
}
}
}