Skip to content

Commit

Permalink
7.3.13
Browse files Browse the repository at this point in the history
- FIX: Possible fix for Authentication failed (code:55): / Cannot parse null string, java.lang.NumberFormatException ConFileManager.getRoots
  • Loading branch information
Osiris-Team committed Dec 3, 2023
1 parent 98be62d commit b0fa550
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public boolean open() throws Exception {
private void doProtocolForSendingRoots() throws IOException {
File[] roots = File.listRoots();
if (roots == null || roots.length == 0) {
dos.write(0);
dos.writeInt(0);
} else {
dos.writeInt(roots.length);
for (File f :
Expand Down

0 comments on commit b0fa550

Please sign in to comment.