Fix a warning
This commit is contained in:
parent
77ff73a1ca
commit
811408fcb5
|
@ -39,7 +39,11 @@ public class JingleFileProvider : FileProvider, Object {
|
||||||
if (jingle_file_transfer == null) {
|
if (jingle_file_transfer == null) {
|
||||||
throw new FileReceiveError.DOWNLOAD_FAILED("Transfer data not available anymore");
|
throw new FileReceiveError.DOWNLOAD_FAILED("Transfer data not available anymore");
|
||||||
}
|
}
|
||||||
jingle_file_transfer.accept(stream);
|
try {
|
||||||
|
jingle_file_transfer.accept(stream);
|
||||||
|
} catch (IOError e) {
|
||||||
|
throw new FileReceiveError.DOWNLOAD_FAILED("Establishing connection did not work");
|
||||||
|
}
|
||||||
return jingle_file_transfer.stream;
|
return jingle_file_transfer.stream;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue