Fix log around sending SKDM's.

main
Greyson Parrelli 2023-01-04 13:26:52 -05:00
rodzic 91f6cff4df
commit a513e93d18
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -1794,7 +1794,7 @@ public class SignalServiceMessageSender {
if (content.getContent().isPresent() && content.getContent().get().getSyncMessage() != null && content.getContent().get().getSyncMessage().hasSent()) {
Log.d(TAG, "[sendMessage][" + timestamp + "] Sending a sent sync message to devices: " + messages.getDevices());
} else if (content.getContent().isPresent() && content.getContent().get().hasSenderKeyDistributionMessage()) {
Log.d(TAG, "[sendMessage][" + timestamp + "] Sending a SKDM to " + messages.getDestination() + " for devices: " + messages.getDevices() + (content.getContent().get().getDataMessage() != null ? " (it's piggy-backing on a DataMessage)" : ""));
Log.d(TAG, "[sendMessage][" + timestamp + "] Sending a SKDM to " + messages.getDestination() + " for devices: " + messages.getDevices() + (content.getContent().get().hasDataMessage() ? " (it's piggy-backing on a DataMessage)" : ""));
}
if (cancelationSignal != null && cancelationSignal.isCanceled()) {