Added support for quotes, mentions and reactions in non-daemon JSON output

This commit is contained in:
david-harley 2020-12-22 15:05:35 +10:30
parent 83d5d53d8a
commit 1de0bbd4f7
10 changed files with 132 additions and 9 deletions

View file

@ -32,6 +32,7 @@ class JsonGroupInfo {
JsonGroupInfo(SignalServiceGroupV2 groupInfo) {
this.groupId = Base64.encodeBytes(GroupUtils.getGroupId(groupInfo.getMasterKey()));
// TODO populate members and name fields
this.type = groupInfo.hasSignedGroupChange() ? "UPDATE" : "DELIVER";
}