fix watchers

This commit is contained in:
Andre Medeiros 2023-03-31 11:57:09 -04:00
parent 782f77a7c4
commit 65fc7a5298
2 changed files with 2 additions and 2 deletions

View file

@ -163,7 +163,7 @@ func (a *api) upsertAccountsHandler(w http.ResponseWriter, r *http.Request) {
me, err := rac.Me(ctx) me, err := rac.Me(ctx)
if err != nil { 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) a.errorResponse(w, r, 422, err)
return return
} }

View file

@ -226,7 +226,7 @@ func (p *postgresWatcherRepository) Create(ctx context.Context, watcher *domain.
watcher.Label, watcher.Label,
watcher.DeviceID, watcher.DeviceID,
watcher.AccountID, watcher.AccountID,
watcher.Type, int64(watcher.Type),
watcher.WatcheeID, watcher.WatcheeID,
watcher.Author, watcher.Author,
watcher.Subreddit, watcher.Subreddit,