Fix pointer in Scan
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Peter Stuifzand 2021-10-31 19:55:19 +01:00
parent 8977ae6a0c
commit 33e58ebe9e
Signed by: peter
GPG Key ID: 374322D56E5209E8

View File

@ -132,7 +132,7 @@ func (h *hubIncomingBackend) UpdateFeed(subscriptionID int64, contentType string
}
for rows.Next() {
err = rows.Scan(&topic, channel, feedID)
err = rows.Scan(&topic, &channel, &feedID)
if err != nil {
log.Println(err)
continue