Use transaction's DataStore

This commit is contained in:
Deluan 2020-08-04 11:53:19 -04:00
parent f1b6703ab0
commit f745b8d223
1 changed files with 2 additions and 2 deletions

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 {
for _, id := range ids {
exist, err := c.ds.Album(ctx).Exists(id)
exist, err := tx.Album(ctx).Exists(id)
if err != nil {
return err
}
@ -155,7 +155,7 @@ func (c *MediaAnnotationController) setStar(ctx context.Context, star bool, ids
}
continue
}
exist, err = c.ds.Artist(ctx).Exists(id)
exist, err = tx.Artist(ctx).Exists(id)
if err != nil {
return err
}