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:
Samuel Clay 2022-01-19 16:28:18 -05:00
parent 4e8ffa2094
commit dd2ad179a3
2 changed files with 4 additions and 4 deletions

View file

@ -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;
}
}

View file

@ -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.");
}
},