Don't force a full scan after upgrading the lyrics

This commit is contained in:
Deluan 2023-12-28 04:55:45 -05:00 committed by Joe Stump
parent 3e9890184b
commit 88e74c0233
No known key found for this signature in database
GPG Key ID: 29151C3EC48A0EB9

View File

@ -72,8 +72,8 @@ func upAlterLyricColumn(ctx context.Context, tx *sql.Tx) error {
return err return err
} }
notice(tx, "A full rescan will be performed to pick up additional lyrics (existing lyrics have been preserved)") notice(tx, "A full rescan should be performed to pick up additional lyrics (existing lyrics have been preserved)")
return forceFullRescan(tx) return nil
} }
func downAlterLyricColumn(ctx context.Context, tx *sql.Tx) error { func downAlterLyricColumn(ctx context.Context, tx *sql.Tx) error {