mirror of
https://github.com/signalapp/Signal-Server
synced 2026-04-20 07:08:05 +01:00
Remove null-check of destination UUID
This commit is contained in:
@@ -313,10 +313,7 @@ public class WebSocketConnection implements MessageAvailabilityListener, Displac
|
||||
builder.setRelay(message.getRelay());
|
||||
}
|
||||
|
||||
// TODO Destination UUIDs will be present for all messages after 2021-12-16
|
||||
if (message.getDestinationUuid() != null) {
|
||||
builder.setDestinationUuid(message.getDestinationUuid().toString());
|
||||
}
|
||||
builder.setDestinationUuid(message.getDestinationUuid().toString());
|
||||
|
||||
builder.setServerGuid(message.getGuid().toString());
|
||||
|
||||
|
||||
Reference in New Issue
Block a user