mamburu: Reading dates from cue fixed

CQTexperiment
Chris Moeller 2013-10-11 06:20:08 -07:00
parent 5e886338d8
commit ca0b43de0f
2 changed files with 4 additions and 1 deletions

View File

@ -43,7 +43,7 @@
[track title], @"title",
[NSNumber numberWithInt:[[track track] intValue]], @"track",
[track genre], @"genre",
[track year], @"year",
[NSNumber numberWithInt:[[track year] intValue]], @"year",
nil];
}

View File

@ -88,5 +88,8 @@
return year;
}
-(NSString *) description {
return [NSString stringWithFormat:@"CueSheetTrack{track: %@, url: %@, artist: %@, album: %@, title: %@, genre: %@, year: %@}", track, [url absoluteURL], artist, album, title, genre, year];
}
@end