mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Fix issue with ShareExtension.js not executing on iOS
Returning undefined here fixes issues where pages would fail to scrape if there was no preview image available.
This commit is contained in:
parent
3a1d75de29
commit
902b6fe97a
1 changed files with 1 additions and 1 deletions
|
|
@ -7,7 +7,7 @@ function iconURL() {
|
|||
|
||||
return document.querySelector("link[rel='apple-touch-icon'], link[rel='shortcut icon'], link[rel='icon']").href
|
||||
} catch {}
|
||||
return null
|
||||
return undefined
|
||||
}
|
||||
|
||||
ShareExtension.prototype = {
|
||||
|
|
|
|||
Loading…
Reference in a new issue