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)
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
}

View File

@ -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,