Fix to prevent uploads getting stuck, seems like a hack but we'll do it for now.

Co-authored-by: sigonasr2 <sigonasr2@gmail.com>
This commit is contained in:
sigonasr2 2022-08-21 20:40:28 -05:00
parent 0f1f6b075c
commit 704fb3bb76

View File

@ -143,6 +143,9 @@ public class sigServer {
//System.out.println(new String(data,StandardCharsets.UTF_8));
break;
}
if (count==50) {
break; //Hack to prevent getting stuck. We're done anyways.
}
}
stream.close();