瀏覽代碼

playback: fix crash on playback start introduced by copy and paste

Felix Paul Kühne 12 年之前
父節點
當前提交
144177270f
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      AspenProject/VLCMovieViewController.m

+ 1 - 1
AspenProject/VLCMovieViewController.m

@@ -1023,7 +1023,7 @@
 
     /* we omit artwork for now since we had to read it from storage as we can't access
      * the artwork cache at the moment - FIXME? */
-    NSMutableDictionary *currentlyPlayingTrackInfo = [NSMutableDictionary dictionaryWithObjectsAndKeys: MPMediaItemPropertyTitle, currentFile.title, MPMediaItemPropertyPlaybackDuration, @(currentFile.duration.intValue / 1000.), MPNowPlayingInfoPropertyElapsedPlaybackTime, @(_mediaPlayer.time.intValue / 1000.), MPNowPlayingInfoPropertyPlaybackRate, @(_mediaPlayer.rate), nil];
+    NSMutableDictionary *currentlyPlayingTrackInfo = [NSMutableDictionary dictionaryWithObjectsAndKeys: currentFile.title, MPMediaItemPropertyTitle, @(currentFile.duration.intValue / 1000.), MPMediaItemPropertyPlaybackDuration, @(_mediaPlayer.time.intValue / 1000.), MPNowPlayingInfoPropertyElapsedPlaybackTime, @(_mediaPlayer.rate), MPNowPlayingInfoPropertyPlaybackRate, nil];
     if ([currentFile isAlbumTrack]) {
         MLAlbumTrack *track = currentFile.albumTrack;
         if (track.artist.length > 0)