SQLite store: Only store raw title field in database, rather than auto generated one
parent
6f0f9d7617
commit
e8f4e5ece7
|
@ -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];
|
||||
|
|
Loading…
Reference in New Issue