mirror of
https://github.com/signalapp/Signal-Server
synced 2026-04-20 22:48:03 +01:00
Set source UUID when delivering envelopes from message cache/db on websocket
This commit is contained in:
@@ -181,6 +181,9 @@ public class WebSocketConnection implements MessageAvailabilityListener, Displac
|
||||
if (!Util.isEmpty(message.getSource())) {
|
||||
builder.setSource(message.getSource())
|
||||
.setSourceDevice(message.getSourceDevice());
|
||||
if (message.getSourceUuid() != null) {
|
||||
builder.setSourceUuid(message.getSourceUuid().toString());
|
||||
}
|
||||
}
|
||||
|
||||
if (message.getMessage() != null) {
|
||||
|
||||
Reference in New Issue
Block a user