removed the throw and logging the error in feed.js

This commit is contained in:
Baris Usakli
2013-07-08 14:39:41 -04:00
parent 8f2a0014b3
commit bed3bf630c

View File

@@ -8,7 +8,9 @@
function saveFeed(location, feed) {
fs.writeFile(location, rss.getFeedXML(feed), function (err) {
if (err) throw err;
if(err) {
console.log(err);
}
});
}