Skip to content
Snippets Groups Projects
Commit 32d0ccb8 authored by Andrew Dolgov's avatar Andrew Dolgov
Browse files

Merge branch 'master' of github.com:gothfox/Tiny-Tiny-RSS

parents be95c9d2 d1046aef
No related branches found
No related tags found
No related merge requests found
......@@ -49,7 +49,9 @@ class FeedParser {
$this->type = $this::FEED_ATOM;
break;
default:
$this->error = "Unknown/unsupported feed type";
if( !isset($this->error) ){
$this->error = "Unknown/unsupported feed type";
}
return;
}
......@@ -121,7 +123,9 @@ class FeedParser {
}
} else {
$this->error = "Unknown/unsupported feed type";
if( !isset($this->error) ){
$this->error = "Unknown/unsupported feed type";
}
return;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment