Merge pull request #64 from mc-hamster/ReplyTapBack

Build tapback support into the meshpacket
This commit is contained in:
Jm Casler 2021-12-29 09:22:05 -08:00 committed by GitHub
commit 1d3b4806ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -711,7 +711,19 @@ message MeshPacket {
/*
* Describe if this message is delayed
*/
Delayed delayed = 15;
Delayed delayed = 15;
/*
* If set, this message is intened to be a reply to a previously sent message with the defined id.
*/
fixed32 reply_id = 16;
/*
* Defaults to false. If true, then what is in the payload should be treated as an emoji like giving
* a message a heart or poop emoji.
*/
bool is_tapback = 17;
}
/*