Skip to content

Commit

Permalink
Remove legacy and no session message handling
Browse files Browse the repository at this point in the history
  • Loading branch information
jlewis13 committed Oct 19, 2017
1 parent a3587bd commit b114cba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/io/forsta/securesms/jobs/PushDecryptJob.java
Original file line number Diff line number Diff line change
Expand Up @@ -181,10 +181,10 @@ private void handleMessage(MasterSecretUnion masterSecret, SignalServiceEnvelope
// handleInvalidVersionMessage(masterSecret, envelope, smsMessageId);
} catch (InvalidMessageException | InvalidKeyIdException | InvalidKeyException | MmsException e) {
Log.w(TAG, e);
handleCorruptMessage(masterSecret, envelope, smsMessageId);
// handleCorruptMessage(masterSecret, envelope, smsMessageId);
} catch (NoSessionException e) {
Log.w(TAG, e);
handleNoSessionMessage(masterSecret, envelope, smsMessageId);
// handleNoSessionMessage(masterSecret, envelope, smsMessageId);
} catch (LegacyMessageException e) {
Log.w(TAG, e);
// handleLegacyMessage(masterSecret, envelope, smsMessageId);
Expand Down

0 comments on commit b114cba

Please sign in to comment.