Fixed wrong error message

This commit is contained in:
ByteHamster 2021-03-01 20:54:24 +01:00
parent ddd6a12354
commit 3bfe69219f
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ public enum DownloadError {
ERROR_UNAUTHORIZED(14, R.string.download_error_unauthorized),
ERROR_FILE_TYPE(15, R.string.download_error_file_type_type),
ERROR_FORBIDDEN(16, R.string.download_error_forbidden),
ERROR_IO_WRONG_SIZE(17, R.string.download_error_forbidden);
ERROR_IO_WRONG_SIZE(17, R.string.download_wrong_size);
private final int code;
private final int resId;