Fix iteration over logs in fetchLogs method.
This commit is contained in:
committed by
Benjamin Arntzen (aider)
parent
0bf5b0e853
commit
44b263fb66
@@ -55,7 +55,7 @@ func (a *App) fetchLogs() {
|
||||
if err != nil {
|
||||
fmt.Println("Error fetching logs:", err)
|
||||
continue
|
||||
for _, log := range logs {
|
||||
for _, log := range logs {
|
||||
if !processedLogs[log.MsgHash+log.Timestamp] {
|
||||
processedLogs[log.MsgHash+log.Timestamp] = true
|
||||
color := generateColor(log.MsgHash)
|
||||
|
||||
Reference in New Issue
Block a user