Skip to content

Commit

Permalink
- desktop sharing doesn't stop when the applet is tunneling. Catch t…
Browse files Browse the repository at this point in the history
…he exception and stop the applet.
  • Loading branch information
ritzalam committed Feb 4, 2016
1 parent 8547360 commit dbf02ba
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
Binary file modified bigbluebutton-client/resources/prod/bbb-deskshare-applet-0.9.0.jar
Binary file not shown.
Binary file not shown.
Expand Up @@ -232,8 +232,14 @@ private void processNextMessageToSend(Message message) {
long end = System.currentTimeMillis(); long end = System.currentTimeMillis();
System.out.println("[HTTP " + id + "] Sending " + changedBlocks.length + " blocks took " + (end - start) + " millis"); System.out.println("[HTTP " + id + "] Sending " + changedBlocks.length + " blocks took " + (end - start) + " millis");


} catch (java.io.FileNotFoundException e) {
System.out.println("java.io.FileNotFoundException: While sending block data.");
e.printStackTrace();
listener.networkException(1, ExitCode.CONNECTION_TO_DESKSHARE_SERVER_DROPPED);
} catch (IOException e) { } catch (IOException e) {
System.out.println("IOException: While sending block data.");
e.printStackTrace(); e.printStackTrace();
listener.networkException(1, ExitCode.CONNECTION_TO_DESKSHARE_SERVER_DROPPED);
} catch (ConnectionException e) { } catch (ConnectionException e) {
System.out.println("ERROR: Failed to send block data."); System.out.println("ERROR: Failed to send block data.");
} }
Expand Down

0 comments on commit dbf02ba

Please sign in to comment.