mirror of
https://github.com/nextcloud/android.git
synced 2024-11-26 23:28:42 +03:00
fix wrong error message displayed
Signed-off-by: Jonas Mayer <jonas.a.mayer@gmx.net>
This commit is contained in:
parent
e6b5fd7a0e
commit
a9ad910dad
1 changed files with 1 additions and 1 deletions
|
@ -423,7 +423,7 @@ public final class ErrorMessageAdapter {
|
|||
message = res.getString(R.string.auth_not_configured_title);
|
||||
|
||||
} else if (result.getCode() == ResultCode.FILE_NOT_FOUND) {
|
||||
message = res.getString(R.string.auth_incorrect_path_title);
|
||||
message = res.getString(R.string.file_not_found);
|
||||
|
||||
} else if (result.getCode() == ResultCode.OAUTH2_ERROR) {
|
||||
message = res.getString(R.string.auth_oauth_error);
|
||||
|
|
Loading…
Reference in a new issue