Skip to content

Commit

Permalink
Merge pull request meshtastic#82 from mc-hamster/master
Browse files Browse the repository at this point in the history
Add reply_id and is_tapback
  • Loading branch information
mc-hamster authored Jan 23, 2022
2 parents 60cf054 + 92d56ce commit 6c39b5b
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions mesh.proto
Original file line number Diff line number Diff line change
Expand Up @@ -524,6 +524,17 @@ message Data {
* Indicates the original message ID that this message is reporting failure on. (formerly called original_id)
*/
fixed32 request_id = 6;

/*
* If set, this message is intened to be a reply to a previously sent message with the defined id.
*/
fixed32 reply_id = 7;

/*
* 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 = 8;
}

/*
Expand Down Expand Up @@ -716,17 +727,6 @@ message MeshPacket {
*/
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;

}

/*
Expand Down

0 comments on commit 6c39b5b

Please sign in to comment.