mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Fix not showing images in wechat articles
This commit is contained in:
parent
963e768996
commit
48255ffbf9
1 changed files with 1 additions and 1 deletions
|
|
@ -526,7 +526,7 @@ Readability.prototype = {
|
|||
// replace all images' href source
|
||||
const images = articleContent.getElementsByTagName('img');
|
||||
Array.from(images).forEach(image => {
|
||||
// for some reason, some images have no src attribute, so we need to use data-src
|
||||
// use data-src if lazy loading
|
||||
const src = image.getAttribute("data-src") || image.getAttribute("src");
|
||||
|
||||
// do not proxy data uri
|
||||
|
|
|
|||
Loading…
Reference in a new issue