Explorar o código

HTTP Download View: fix crash when queueing items

Felix Paul Kühne %!s(int64=12) %!d(string=hai) anos
pai
achega
06abaa67d9
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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;
 }