Skip to content

Commit

Permalink
Add missing MD5 return in MD5Calculator
Browse files Browse the repository at this point in the history
  • Loading branch information
Rian8337 committed Jan 21, 2024
1 parent 409d00c commit 8fc248b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/ru/nsu/ccfit/zuev/osu/helper/MD5Calculator.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ public static String getStringMD5(final String str) {
while (md5.length() < 32) {
md5.insert(0, "0");
}
return md5.toString();
} catch (Exception e) {
Debug.e("MD5Calculator: " + e.getMessage());
}
Expand Down

0 comments on commit 8fc248b

Please sign in to comment.