Skip to content

Commit d5f2bd1

Browse files
committed
Merge branch 'hotfix/0.9.1'
2 parents a230c07 + 3e7ad7e commit d5f2bd1

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

app/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "__MSG_appName__",
3-
"version": "0.9.0",
3+
"version": "0.9.1",
44
"manifest_version": 2,
55
"description": "__MSG_appDescription__",
66
"icons": {

app/scripts/content.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ function onBoilerpipeArticleExtracted(data, overlay) {
162162
var articleContent = data.response.content;
163163

164164
// Search the element of the page that will containt the text
165-
var contentElement = document.querySelector('.content');
165+
var contentElement = document.querySelector('.entryBody .content');
166166
if (contentElement === null) {
167167
console.log('[FullyFeedly] There is something wrong: no content element found');
168168
failOverlay('contentNotFound', overlay);
@@ -226,7 +226,7 @@ function onMercuryReadabilityArticleExtracted(data, overlay) {
226226
var articleContent = data.content;
227227

228228
// Search the element of the page that will containt the text
229-
var contentElement = document.querySelector('.content');
229+
var contentElement = document.querySelector('.entryBody .content');
230230
if (contentElement === null) {
231231
console.log('[FullyFeedly] There is something wrong: no content element found');
232232
failOverlay('contentNotFound', overlay);
@@ -386,7 +386,7 @@ function addUndoButton(articlePreviewHTML) {
386386
function getShowPreviewFunction(articlePreviewHTML) {
387387
return function() {
388388
// Search the element with the content
389-
var contentElement = document.querySelector('.content');
389+
var contentElement = document.querySelector('.entryBody .content');
390390
if (contentElement === null) {
391391
console.log('[FullyFeedly] There is something wrong: no content element found');
392392
failOverlay('error');

0 commit comments

Comments
 (0)