mirror of
https://github.com/signalapp/Signal-Android.git
synced 2025-12-24 13:08:46 +00:00
Add poll icon when quoting a poll.
This commit is contained in:
committed by
Cody Henthorne
parent
91b70038e6
commit
b3f74d37e1
@@ -291,7 +291,8 @@ class SignalServiceDataMessage private constructor(
|
||||
) {
|
||||
enum class Type(val protoType: QuoteProto.Type) {
|
||||
NORMAL(QuoteProto.Type.NORMAL),
|
||||
GIFT_BADGE(QuoteProto.Type.GIFT_BADGE);
|
||||
GIFT_BADGE(QuoteProto.Type.GIFT_BADGE),
|
||||
POLL(QuoteProto.Type.POLL);
|
||||
|
||||
companion object {
|
||||
@JvmStatic
|
||||
|
||||
@@ -177,6 +177,7 @@ message DataMessage {
|
||||
enum Type {
|
||||
NORMAL = 0;
|
||||
GIFT_BADGE = 1;
|
||||
POLL = 2;
|
||||
}
|
||||
|
||||
message QuotedAttachment {
|
||||
|
||||
Reference in New Issue
Block a user