Fix reporting token data bug.

This commit is contained in:
Cody Henthorne 2023-02-22 19:22:06 -05:00
parent 19d67d1111
commit 01351125f1

View file

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