html-get 2.17.0-4 → 2.17.0-5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/html.js +2 -2
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "html-get",
3
3
  "description": "Get the HTML from any website, fine-tuned for correction & speed",
4
4
  "homepage": "https://nicedoc.com/microlinkhq/html-get",
5
- "version": "2.17.0-4",
5
+ "version": "2.17.0-5",
6
6
  "main": "src/index.js",
7
7
  "bin": {
8
8
  "html-get": "bin/index.js"
package/src/html.js CHANGED
@@ -102,11 +102,11 @@ const rewriteMetaTags = ({ $ }) => {
102
102
  const property = el.attr('property')
103
103
 
104
104
  // Convert 'name' to 'property' for Open Graph tags if 'property' is not already set correctly
105
- if (isOpenGraph(name) && property !== name) {
105
+ if (property !== name && isOpenGraph(name)) {
106
106
  el.removeAttr('name').attr('property', name)
107
107
  debug('og', el.attr())
108
108
  // Convert 'property' to 'name' for non-Open Graph tags
109
- } else if (!isOpenGraph(property)) {
109
+ } else if (property && !isOpenGraph(property)) {
110
110
  el.removeAttr('property').attr('name', property)
111
111
  debug('meta', el.attr())
112
112
  }