fix unsend request receive handler

This commit is contained in:
Ryan Zhao 2021-07-30 17:04:56 +10:00
parent adcca5d1e1
commit 94c1879263
1 changed files with 1 additions and 0 deletions

View File

@ -124,6 +124,7 @@ public enum MessageReceiver {
if let dataExtractionNotification = DataExtractionNotification.fromProto(proto) { return dataExtractionNotification }
if let expirationTimerUpdate = ExpirationTimerUpdate.fromProto(proto) { return expirationTimerUpdate }
if let configurationMessage = ConfigurationMessage.fromProto(proto) { return configurationMessage }
if let unsendRequest = UnsendRequest.fromProto(proto) { return unsendRequest }
if let visibleMessage = VisibleMessage.fromProto(proto) { return visibleMessage }
return nil
}()