Fix reporting token data bug.

main
Cody Henthorne 2023-02-22 19:22:06 -05:00
rodzic 19d67d1111
commit 01351125f1
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -331,6 +331,6 @@ public class SignalServiceEnvelope {
proto.getDestinationUuid(),
proto.getUrgent(),
proto.getStory(),
proto.getReportingToken().toByteArray());
proto.hasReportingToken() ? proto.getReportingToken().toByteArray() : null);
}
}