This commit is contained in:
tonikelope 2017-11-28 11:04:32 +01:00
parent 0906ac9108
commit b14f3a03d0
2 changed files with 2 additions and 2 deletions

View File

@ -320,7 +320,7 @@ public class ChunkDownloader implements Runnable, SecureSingleThreadNotifiable {
@Override
public void run() {
while (!_exit) {
while (!_exit && !_download.isStopped()) {
try {

View File

@ -45,7 +45,7 @@ import org.apache.http.auth.UsernamePasswordCredentials;
*/
public final class MainPanel {
public static final String VERSION = "2.32";
public static final String VERSION = "2.33";
public static final int THROTTLE_SLICE_SIZE = 16 * 1024;
public static final int DEFAULT_BYTE_BUFFER_SIZE = 16 * 1024;
public static final int STREAMER_PORT = 1337;