3
0
mirror of https://github.com/ergochat/ergo.git synced 2024-11-22 11:59:40 +01:00

Merge pull request #2070 from slingamn/batchfix

fix incorrect chathistory batch types
This commit is contained in:
Shivaram Lingamneni 2023-06-02 04:00:34 -07:00 committed by GitHub
commit 07cc4f8354
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -1059,7 +1059,7 @@ func (channel *Channel) replayHistoryItems(rb *ResponseBuffer, items []history.I
} }
} }
batchID := rb.StartNestedBatch(chname, "chathistory") batchID := rb.StartNestedBatch("chathistory", chname)
defer rb.EndNestedBatch(batchID) defer rb.EndNestedBatch(batchID)
for _, item := range items { for _, item := range items {

View File

@ -850,7 +850,7 @@ func (client *Client) replayPrivmsgHistory(rb *ResponseBuffer, items []history.I
if target == "" { if target == "" {
target = nick target = nick
} }
batchID = rb.StartNestedBatch(target, "chathistory") batchID = rb.StartNestedBatch("chathistory", target)
isSelfMessage := func(item *history.Item) bool { isSelfMessage := func(item *history.Item) bool {
// XXX: Params[0] is the message target. if the source of this message is an in-memory // XXX: Params[0] is the message target. if the source of this message is an in-memory