Browse Source

HTTP Download View: fix crash when queueing items

Felix Paul Kühne 12 years ago
parent
commit
06abaa67d9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      AspenProject/VLCHTTPDownloadViewController.m

+ 1 - 1
AspenProject/VLCHTTPDownloadViewController.m

@@ -136,7 +136,7 @@
 
     NSInteger row = indexPath.row;
     cell.textLabel.text = [_currentDownloads[row] lastPathComponent];
-    cell.detailTextLabel.text = _currentDownloads[row];
+    cell.detailTextLabel.text = [_currentDownloads[row] absoluteString];
 
     return cell;
 }