Parcourir la source

HTTP Download View: fix crash when queueing items

Felix Paul Kühne il y a 12 ans
Parent
commit
06abaa67d9
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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;
 }