Skip to content

Commit

Permalink
Merge branch 'hotfix/0.9.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
Muffo committed Nov 14, 2016
2 parents a230c07 + 3e7ad7e commit d5f2bd1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "__MSG_appName__",
"version": "0.9.0",
"version": "0.9.1",
"manifest_version": 2,
"description": "__MSG_appDescription__",
"icons": {
Expand Down
6 changes: 3 additions & 3 deletions app/scripts/content.js
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ function onBoilerpipeArticleExtracted(data, overlay) {
var articleContent = data.response.content;

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

// Search the element of the page that will containt the text
var contentElement = document.querySelector('.content');
var contentElement = document.querySelector('.entryBody .content');
if (contentElement === null) {
console.log('[FullyFeedly] There is something wrong: no content element found');
failOverlay('contentNotFound', overlay);
Expand Down Expand Up @@ -386,7 +386,7 @@ function addUndoButton(articlePreviewHTML) {
function getShowPreviewFunction(articlePreviewHTML) {
return function() {
// Search the element with the content
var contentElement = document.querySelector('.content');
var contentElement = document.querySelector('.entryBody .content');
if (contentElement === null) {
console.log('[FullyFeedly] There is something wrong: no content element found');
failOverlay('error');
Expand Down

0 comments on commit d5f2bd1

Please sign in to comment.