better error message on login with wrong server address, fixes #15

This commit is contained in:
Jeena 2014-05-22 21:29:39 +02:00
parent 54c87e58d8
commit 89142c54c0
4 changed files with 16 additions and 4 deletions

View file

@ -186,7 +186,7 @@ App.prototype.gotUnreadFeeds = function(new_articles) {
}
}
catch (e) {
alert("Reached maximum memory by app" + e.name + " " +e.message +". We will keep working in anycase with:" + localStorage.unread_articles.length);
alert("Reached maximum memory by app " + e.name + " " + e.message + ". We will keep working in anycase with: " + localStorage.unread_articles.length);
}
this.populateList();
}