Handle ETRYAGAIN app error

Fixes #100
This commit is contained in:
Johannes
2016-11-30 17:34:12 +01:00
parent 2bba87d951
commit ac09ad3393

View File

@@ -106,6 +106,7 @@ app.filter('activeOAuthClients', function () {
app.filter('prettyAppMessage', function () {
return function (message) {
if (message === 'ETRYAGAIN') return 'Ensure that the DNS record for this location is setup correctly.';
return message;
};
});