http upload: do not crash on invalid slot responses

This commit is contained in:
Christian Schneppe 2018-02-11 19:36:09 +01:00
parent 41c1665f67
commit 3f6923f706

View file

@ -145,11 +145,11 @@ public class HttpUploadConnection implements Transferable {
}
}
}
if (!canceled) {
new Thread(this::upload).start();
}
return;
}
if (!canceled) {
new Thread(this::upload).start();
}
return;
} catch (MalformedURLException e) {
//fall through
}