mirror of
https://github.com/ergochat/ergo.git
synced 2025-02-16 21:50:39 +01:00
fix #1552
ZNC playback LIST was panicking when history was disabled, and possibly in other cases
This commit is contained in:
parent
56bef19505
commit
1f3f9f18d9
@ -203,7 +203,9 @@ func zncPlaybackListHandler(client *Client, command string, params []string, rb
|
|||||||
nick := client.Nick()
|
nick := client.Nick()
|
||||||
for _, channel := range client.Channels() {
|
for _, channel := range client.Channels() {
|
||||||
_, sequence, err := client.server.GetHistorySequence(channel, client, "")
|
_, sequence, err := client.server.GetHistorySequence(channel, client, "")
|
||||||
if err != nil {
|
if sequence == nil {
|
||||||
|
continue
|
||||||
|
} else if err != nil {
|
||||||
client.server.logger.Error("internal", "couldn't get history sequence for ZNC list", err.Error())
|
client.server.logger.Error("internal", "couldn't get history sequence for ZNC list", err.Error())
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user