Merge pull request #4983 from ByteHamster/fix-error-message-wrong-size

Fixed wrong error message
This commit is contained in:
ByteHamster 2021-03-01 23:03:20 +01:00 committed by GitHub
commit 3dadbbf249
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;