backend for xcvr appview
2
fork

Configure Feed

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

fix sql

+1 -1
+1 -1
server/internal/db/oauth.go
··· 130 130 131 131 func (s *Store) DeleteOauthRequest(state string, ctx context.Context) error { 132 132 _, err := s.pool.Exec(ctx, ` 133 - DELETE FROM oauthrequests WHERE r.state = $1 133 + DELETE FROM oauthrequests r WHERE r.state = $1 134 134 `, state) 135 135 return err 136 136 }