mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Fixing saved story view for users with preference to open first unread story, thereby switching them out of saved mode and into unread mode.
This commit is contained in:
parent
2733381001
commit
78c8534225
2 changed files with 3 additions and 2 deletions
|
@ -921,7 +921,8 @@
|
|||
find_story_with_action_preference_on_open_feed: function() {
|
||||
var open_feed_action = this.model.preference('open_feed_action');
|
||||
|
||||
if (!this.active_story && open_feed_action == 'newest') {
|
||||
if (!this.active_story && open_feed_action == 'newest' &&
|
||||
!this.flags['feed_list_showing_starred']) {
|
||||
this.show_next_unread_story();
|
||||
}
|
||||
},
|
||||
|
|
|
@ -85,7 +85,7 @@
|
|||
<img src="/media/img/logo_512.png" class="logo">
|
||||
<h1>NewsBlur is in <span class="error404">maintenance mode</span></h1>
|
||||
<div class="description">
|
||||
<p>This will take about 5 minutes. The MongoDB server is cracking under normal load, so I'm trying some things in order to get it back into good shape.</p>
|
||||
<p>This will take about 20 seconds. I'm deprecating an old primary mongodb server, which can take a few seconds to propagate.</p>
|
||||
<p>To pass the time, <a href="http://mlkshk.com/popular">check out what's popular on MLKSHK</a>.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Reference in a new issue