You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the user enters a realm URL, then their username/password, we should give more specific feedback on failure than "Could not connect" and "Login failed", respectively.
We've written TODO comments for that in the code:
This TODO in error handling on our getServerSettings request:
// TODO(#105) give more helpful feedback; see `fetchServerSettings`// in zulip-mobile's src/message/fetchActions.js. Needs #37.showErrorDialog(context: context,
title:'Could not connect', message:'Failed to connect to server:\n$url');
This TODO in our error handling on fetchApiKey:
// TODO(#105) give more helpful feedback. Needs #37. The RN app is// unhelpful here; we should at least recognize invalid auth errors, and// errors for deactivated user or realm (see zulip-mobile#4571).showErrorDialog(context: context, title:'Login failed');
This issue is for tracking those TODOs.
The text was updated successfully, but these errors were encountered:
In particular, this means we'll show messages from the server like
"Your username or password is incorrect" or "Enter a valid email address."
Fixes-partly: zulip#105
In particular, this means we'll show messages from the server like
"Your username or password is incorrect" or "Enter a valid email address."
Fixes-partly: zulip#105
Needs #37.
When the user enters a realm URL, then their username/password, we should give more specific feedback on failure than "Could not connect" and "Login failed", respectively.
We've written TODO comments for that in the code:
getServerSettings
request:fetchApiKey
:This issue is for tracking those TODOs.
The text was updated successfully, but these errors were encountered: