mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
Performing the correct check for <ins> in stories.
This commit is contained in:
parent
a88112ab8f
commit
7cb84d7e82
1 changed files with 1 additions and 1 deletions
|
@ -3007,7 +3007,7 @@
|
|||
: '';
|
||||
if (score > 0) score_color = 'positive';
|
||||
if (score < 0) score_color = 'negative';
|
||||
if (story.story_content.indexOf('<ins>') != -1) story_has_modifications = true;
|
||||
if (story.story_content.indexOf('<ins') != -1) story_has_modifications = true;
|
||||
|
||||
river_same_feed = null;
|
||||
if (this.cache.last_feed_view_story_feed_id == story.story_feed_id) {
|
||||
|
|
Loading…
Add table
Reference in a new issue