Use transaction's DataStore

This commit is contained in:
Deluan 2020-08-04 11:53:19 -04:00
parent f1b6703ab0
commit f745b8d223

View File

@ -144,7 +144,7 @@ func (c *MediaAnnotationController) setStar(ctx context.Context, star bool, ids
err := c.ds.WithTx(func(tx model.DataStore) error { err := c.ds.WithTx(func(tx model.DataStore) error {
for _, id := range ids { for _, id := range ids {
exist, err := c.ds.Album(ctx).Exists(id) exist, err := tx.Album(ctx).Exists(id)
if err != nil { if err != nil {
return err return err
} }
@ -155,7 +155,7 @@ func (c *MediaAnnotationController) setStar(ctx context.Context, star bool, ids
} }
continue continue
} }
exist, err = c.ds.Artist(ctx).Exists(id) exist, err = tx.Artist(ctx).Exists(id)
if err != nil { if err != nil {
return err return err
} }