http upload: do not crash on invalid slot responses
This commit is contained in:
parent
41c1665f67
commit
3f6923f706
1 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
}
|
||||
|
|
Reference in a new issue