Don't let one unregistered device block receipt for others.

This commit is contained in:
Jon Chambers
2020-04-30 18:12:50 -04:00
committed by Jon Chambers
parent acfbab5915
commit 10840b22c5
3 changed files with 14 additions and 12 deletions

View File

@@ -158,7 +158,7 @@ public class WebSocketConnection implements DispatchChannel {
try {
receiptSender.sendReceipt(account, message.getSource(), message.getTimestamp());
} catch (NoSuchUserException | NotPushRegisteredException e) {
} catch (NoSuchUserException e) {
logger.info("No longer registered " + e.getMessage());
} catch (WebApplicationException e) {
logger.warn("Bad federated response for receipt: " + e.getResponse().getStatus());