Skip to content

Commit

Permalink
Updated packages and bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
mrgodhani committed Jun 4, 2023
1 parent 5ee3068 commit 498774f
Show file tree
Hide file tree
Showing 3 changed files with 160 additions and 121 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "raven-reader",
"productName": "Raven Reader",
"version": "1.0.79",
"version": "1.0.80",
"author": "Hello Efficiency Inc. <welcome@helloefficiency.com>",
"description": "Simple desktop RSS Reader",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions src/bridge/rss.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ export default {
const options = {
ignoreAttributes: false
}
const parse = new XMLParser(options)
const parser = new XMLParser(options)
const response = await fetch(normalizeUrl(url, { stripWWW: false, removeTrailingSlash: false }))
const responseData = await response.text()
return parse(responseData)
return parser.parse(responseData)
}
}
Loading

0 comments on commit 498774f

Please sign in to comment.