Changeset 652 in code for trunk/upstream.go
- Timestamp:
- Oct 18, 2021, 5:15:15 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/upstream.go
r649 r652 2 2 3 3 import ( 4 "context" 4 5 "crypto" 5 6 "crypto/sha256" … … 1517 1518 if ch.ReattachOn == FilterMessage || (ch.ReattachOn == FilterHighlight && uc.network.isHighlight(msg)) { 1518 1519 uc.network.attach(ch) 1519 if err := uc.srv.db.StoreChannel( uc.network.ID, ch); err != nil {1520 if err := uc.srv.db.StoreChannel(context.TODO(), uc.network.ID, ch); err != nil { 1520 1521 uc.logger.Printf("failed to update channel %q: %v", ch.Name, err) 1521 1522 }
Note:
See TracChangeset
for help on using the changeset viewer.