diff --git a/lib/exception_util.dart b/lib/exception_util.dart index e31476fa..7ae9b078 100644 --- a/lib/exception_util.dart +++ b/lib/exception_util.dart @@ -10,6 +10,8 @@ String toUserString(dynamic exception) { if (exception is ApiException) { if (exception.response.statusCode == 401) { return L10n.global().errorUnauthenticated; + } else if (exception.response.statusCode == 404) { + return "404 not found"; } else if (exception.response.statusCode == 423) { return L10n.global().errorLocked; } else if (exception.response.statusCode == 500) {