Explorar o código

Dropbox: fix corner-case in which the view controller fails to pop

Felix Paul Kühne %!s(int64=12) %!d(string=hai) anos
pai
achega
0375b71f5a
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      AspenProject/VLCDropboxTableViewController.m

+ 1 - 1
AspenProject/VLCDropboxTableViewController.m

@@ -127,7 +127,7 @@
 
 - (IBAction)goBack:(id)sender
 {
-    if (![_currentPath isEqualToString:@"/"]) {
+    if (![_currentPath isEqualToString:@"/"] && [_currentPath length] > 0) {
         _currentPath = [_currentPath stringByDeletingLastPathComponent];
         [self _requestInformationForCurrentPath];
     } else