mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
We no longer know if the original story could not be proxied because an .contents() failed to find a body.
This commit is contained in:
parent
4e8ffa2094
commit
dd2ad179a3
2 changed files with 4 additions and 4 deletions
|
@ -377,12 +377,12 @@ NEWSBLUR.Views.DashboardRiver = Backbone.View.extend({
|
|||
|
||||
if (NEWSBLUR.assets.view_setting(this.model.get('river_id'), 'order') == 'newest') {
|
||||
if (timestamp < last_timestamp) {
|
||||
console.log(['New story older than last/oldest dashboard story', timestamp, '<', last_timestamp]);
|
||||
// console.log(['New story older than last/oldest dashboard story', timestamp, '<', last_timestamp]);
|
||||
return;
|
||||
}
|
||||
} else {
|
||||
if (timestamp > last_timestamp) {
|
||||
console.log(['New story older than last/newest dashboard story', timestamp, '<', last_timestamp]);
|
||||
// console.log(['New story older than last/newest dashboard story', timestamp, '<', last_timestamp]);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -107,8 +107,8 @@ NEWSBLUR.Views.StoryTabView = Backbone.View.extend({
|
|||
// proxied_https: true
|
||||
// }, "Imperfect proxy due<br />to http over https");
|
||||
} else if (!correct && this.flags.proxied_https) {
|
||||
NEWSBLUR.reader.switch_taskbar_view('text', {skip_save_type: 'story'});
|
||||
NEWSBLUR.app.taskbar_info.show_stories_error({}, "Sorry, the original story<br />could not be proxied.");
|
||||
// NEWSBLUR.reader.switch_taskbar_view('text', {skip_save_type: 'story'});
|
||||
// NEWSBLUR.app.taskbar_info.show_stories_error({}, "Sorry, the original story<br />could not be proxied.");
|
||||
}
|
||||
},
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue