We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Namely here: 551c97d#diff-a6ea4f84b562cfcf22f06c879c78fda8R215
There is no "break" operator after md5 string is extracted so it skips the next name which breaks everything.
Also, 2ch.hk already sends the md5 parameter as a normal string (it's not base64 encoded) so we don't need to decode it.
public Builder fileHash(String fileHash) { if (!TextUtils.isEmpty(fileHash)) { this.fileHash = StringUtils.decodeBase64(fileHash); } return this; }
The text was updated successfully, but these errors were encountered:
2a8d139
No branches or pull requests
Namely here: 551c97d#diff-a6ea4f84b562cfcf22f06c879c78fda8R215
There is no "break" operator after md5 string is extracted so it skips the next name which breaks everything.
Also, 2ch.hk already sends the md5 parameter as a normal string (it's not base64 encoded) so we don't need to decode it.
The text was updated successfully, but these errors were encountered: