forked from platypush/platypush
Skip None
responses in the RSS plugin.
This commit is contained in:
parent
40d3ad1150
commit
4d52fd35b9
1 changed files with 1 additions and 1 deletions
|
@ -368,7 +368,7 @@ class RssPlugin(RunnablePlugin):
|
||||||
responses[url] = response['content']
|
responses[url] = response['content']
|
||||||
|
|
||||||
responses = {
|
responses = {
|
||||||
k: v for k, v in responses.items() if not isinstance(v, Exception)
|
k: v for k, v in responses.items() if v and not isinstance(v, Exception)
|
||||||
}
|
}
|
||||||
|
|
||||||
for url, response in responses.items():
|
for url, response in responses.items():
|
||||||
|
|
Loading…
Reference in a new issue