Moderator: moderators
Munger wrote:I have quite a large number of artists whose biographies are present on last.fm, but for whatever reason musiccabinet isn't picking them up. Is there any way to force a re-scan for particular artists by removing records from the database? My collection is tagged directly from musicbrainz, so I don't think spelling of artist names is an issue here.
-- When was biography fetched?
select invocation_time from library.webservice_history h inner join music.artist a on h.artist_id = a.id where a.artist_name = upper('Nirvana') and h.calltype_id = 5;
-- Do we have a biography?
select ai.biosummary from music.artistinfo ai inner join music.artist a on ai.artist_id = a.id where a.artist_name = upper('Nirvana');
-- Delete the biography:
delete from music.artistinfo where artist_id in (select id from music.artist where artist_name = upper('Nirvana'));
-- Delete the history of looking it up, to force reading it again on next scan:
delete from library.webservice_history where calltype_id = 5 and artist_id in (select id from music.artist where artist_name = upper('Nirvana'));
Users browsing this forum: No registered users and 25 guests