Skip to content

Commit

Permalink
Maintenance version 5.2.1: Fix regression thanks to Jelal Bairamoglou
Browse files Browse the repository at this point in the history
* The default feed can be updated twice again.
* For testing: Possible fix: When the default feed has been updated and it stops working due to server issues, the previous articles aren't deleted and can be read with the corresponding keystrokes.
nvdaes committed Nov 1, 2018

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 1bb90ac commit 5af8f04
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion addon/globalPlugins/readFeeds/__init__.py
Original file line number Diff line number Diff line change
@@ -604,7 +604,7 @@ def getFirstArticle(self):
with open(os.path.join(FEEDS_PATH, addressFile), "r") as f:
address = f.read()
f.close()
if self.feed and self.feed.getUrl == address:
if self.feed and self.feed.getFeedUrl() == address:
curFeed = self.feed
else:
curFeed = None
2 changes: 1 addition & 1 deletion buildVars.py
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@
# Translators: Long description to be shown for this add-on on add-on information from add-ons manager
"addon_description" : _("""Add-on for using NVDA as a feed reader."""),
# version
"addon_version" : "5.2",
"addon_version" : "5.2.1",
# Author(s)
"addon_author" : u"Noelia Ruiz Martínez <[email protected]>, Mesar Hameed <[email protected]>",
# URL for the add-on documentation support

0 comments on commit 5af8f04

Please sign in to comment.