Skip to content

Commit

Permalink
tracks are number
Browse files Browse the repository at this point in the history
  • Loading branch information
badetitou committed Jun 13, 2019
1 parent bb70657 commit dddfa33
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/EMM-Importer/EMMLibraryImporter.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ EMMLibraryImporter >> createSongFromFile: file [
folder addSong: song.
song folder: folder.
song title: id3parser id3v2Tag title.
song track: id3parser id3v2Tag track.
song track: id3parser id3v2Tag track asInteger.
[ song length: id3parser id3v2Tag length ]
on: FrameNotFoundError
do: [ song length: self notDefineTextValue ].
Expand Down
2 changes: 1 addition & 1 deletion src/EMM-WebApplication/EMMListModule.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ EMMListModule >> renderContentOn: html [
html
tableRow: [
html mdlTableCell
with: song track.
with: song track asString.
html mdlTableCell
nonNumerical;
with: song title.
Expand Down

0 comments on commit dddfa33

Please sign in to comment.