SQLite store: Only store raw title field in database, rather than auto generated one

CQTexperiment
Christopher Snowhill 2022-01-20 14:54:51 -08:00
parent 6f0f9d7617
commit e8f4e5ece7
1 changed files with 2 additions and 2 deletions

View File

@ -1028,7 +1028,7 @@ static SQLiteStore *g_sharedStore = NULL;
int64_t albumId = [self addString:[track album]];
int64_t albumartistId = [self addString:[track albumartist]];
int64_t artistId = [self addString:[track artist]];
int64_t titleId = [self addString:[track title]];
int64_t titleId = [self addString:[track rawTitle]];
int64_t genreId = [self addString:[track genre]];
int64_t codecId = [self addString:[track codec]];
int64_t trackNr = [[track track] intValue];
@ -1220,7 +1220,7 @@ static SQLiteStore *g_sharedStore = NULL;
int64_t albumId = [self addString:[track album]];
int64_t albumartistId = [self addString:[track albumartist]];
int64_t artistId = [self addString:[track artist]];
int64_t titleId = [self addString:[track title]];
int64_t titleId = [self addString:[track rawTitle]];
int64_t genreId = [self addString:[track genre]];
int64_t codecId = [self addString:[track codec]];
int64_t trackNr = [[track track] intValue];