Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
VideoLAN
VLC-iOS
Commits
0375b71f
Commit
0375b71f
authored
Jul 21, 2013
by
Felix Paul Kühne
Browse files
Dropbox: fix corner-case in which the view controller fails to pop
parent
15c6475c
Changes
1
Hide whitespace changes
Inline
Side-by-side
AspenProject/VLCDropboxTableViewController.m
View file @
0375b71f
...
...
@@ -127,7 +127,7 @@
-
(
IBAction
)
goBack
:(
id
)
sender
{
if
(
!
[
_currentPath
isEqualToString
:
@"/"
])
{
if
(
!
[
_currentPath
isEqualToString
:
@"/"
]
&&
[
_currentPath
length
]
>
0
)
{
_currentPath
=
[
_currentPath
stringByDeletingLastPathComponent
];
[
self
_requestInformationForCurrentPath
];
}
else
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment