We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73617e8 commit 6b8a9b0Copy full SHA for 6b8a9b0
2 files changed
proto
service/msap/msap.go
@@ -157,7 +157,6 @@ func sync(c *gin.Context) {
157
groupID := c.GetInt64("groupid")
158
lastMsgIDStr := c.Query("msgid")
159
startSync := c.Query("sync") != "false"
160
- usePrev := c.Query("prev") == "true"
161
msgLimitStr := c.Query("limit")
162
if msgLimitStr == "" {
163
msgLimitStr = "128"
@@ -211,7 +210,6 @@ func sync(c *gin.Context) {
211
210
req := &pb.SyncMessageRequest{
212
Groupid: groupID,
213
LastMsgid: msgid,
214
- Prev: usePrev,
215
Sync: startSync,
216
Limit: msgLimit,
217
}
0 commit comments