Remove unused column in scan
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Peter Stuifzand 2021-10-31 22:46:32 +01:00
parent 21f1048bba
commit a183b26312
Signed by: peter
GPG Key ID: 374322D56E5209E8

View File

@ -165,7 +165,7 @@ func (h *hubIncomingBackend) Feeds() ([]Feed, error) {
var feeds []Feed
rows, err := db.Query(`
select s.id, c.uid, topic, hub, callback, subscription_secret, lease_seconds, resubscribe_at
select s.id, topic, hub, callback, subscription_secret, lease_seconds, resubscribe_at
from subscriptions s
inner join feeds f on f.url = s.topic
inner join channels c on c.id = f.channel_id