mirror of
https://github.com/christianselig/apollo-backend
synced 2024-11-14 16:07:42 +00:00
fix watchers
This commit is contained in:
parent
782f77a7c4
commit
65fc7a5298
2 changed files with 2 additions and 2 deletions
|
@ -163,7 +163,7 @@ func (a *api) upsertAccountsHandler(w http.ResponseWriter, r *http.Request) {
|
|||
me, err := rac.Me(ctx)
|
||||
|
||||
if err != nil {
|
||||
err := fmt.Errorf("failed to fetch user info: %w", err)
|
||||
err = fmt.Errorf("failed to fetch user info: %w", err)
|
||||
a.errorResponse(w, r, 422, err)
|
||||
return
|
||||
}
|
||||
|
|
|
@ -226,7 +226,7 @@ func (p *postgresWatcherRepository) Create(ctx context.Context, watcher *domain.
|
|||
watcher.Label,
|
||||
watcher.DeviceID,
|
||||
watcher.AccountID,
|
||||
watcher.Type,
|
||||
int64(watcher.Type),
|
||||
watcher.WatcheeID,
|
||||
watcher.Author,
|
||||
watcher.Subreddit,
|
||||
|
|
Loading…
Reference in a new issue