Skip to content

Commit

Permalink
修正serverapi修改群组信息的错误问题
Browse files Browse the repository at this point in the history
  • Loading branch information
imhao183 committed Apr 7, 2021
1 parent 47c2e26 commit a6c6cf0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,14 @@ public WFCMessage.ModifyGroupInfoRequest toProtoGroupRequest() {
.setType(type)
.setValue(value)
.addAllToLine(to_lines == null || to_lines.isEmpty() ? Arrays.asList(0) : to_lines)
.setNotifyContent(notify_message.toProtoMessageContent())
.build();
} else {
return WFCMessage.ModifyGroupInfoRequest.newBuilder()
.setGroupId(group_id)
.setType(type)
.setValue(value)
.addAllToLine(to_lines == null || to_lines.isEmpty() ? Arrays.asList(0) : to_lines)
.setNotifyContent(notify_message.toProtoMessageContent())
.build();
}
}
Expand Down

0 comments on commit a6c6cf0

Please sign in to comment.