this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix ResubscribeAllHosts query

+1 -1
+1 -1
cmd/relay/relay/crawl.go
··· 59 59 func (r *Relay) ResubscribeAllHosts() error { 60 60 61 61 var all []models.Host 62 - if err := r.db.Find(&all, "status = \"active\"").Error; err != nil { 62 + if err := r.db.Find(&all, "status = ?", "active").Error; err != nil { 63 63 return err 64 64 } 65 65