From dd2ad179a3489582337f8cef23fab04e106638ac Mon Sep 17 00:00:00 2001 From: Samuel Clay Date: Wed, 19 Jan 2022 16:28:18 -0500 Subject: [PATCH] We no longer know if the original story could not be proxied because an .contents() failed to find a body. --- media/js/newsblur/views/dashboard_river_view.js | 4 ++-- media/js/newsblur/views/story_tab_view.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/media/js/newsblur/views/dashboard_river_view.js b/media/js/newsblur/views/dashboard_river_view.js index 9f83de717..e535bf0e6 100644 --- a/media/js/newsblur/views/dashboard_river_view.js +++ b/media/js/newsblur/views/dashboard_river_view.js @@ -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; } } diff --git a/media/js/newsblur/views/story_tab_view.js b/media/js/newsblur/views/story_tab_view.js index 59fa7b497..ec7c45be9 100644 --- a/media/js/newsblur/views/story_tab_view.js +++ b/media/js/newsblur/views/story_tab_view.js @@ -107,8 +107,8 @@ NEWSBLUR.Views.StoryTabView = Backbone.View.extend({ // proxied_https: true // }, "Imperfect proxy due
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
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
could not be proxied."); } },