aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Marshall <jmarshall@never.you.mind>2012-11-16 07:56:48 +1300
committerJonathan Marshall <jmarshall@never.you.mind>2012-11-16 07:57:24 +1300
commitc005c72a1d9737865da91dfe124e964d14fa0766 (patch)
tree460886e9ad1e1438b3ca99ddf78fa08ba95cf2ba
parentfbf1bc2e92b158ecb0172d46d70d518b12b99b17 (diff)
don't resolve file directories in xbmcvfs.listdir. fixes #13551
-rw-r--r--xbmc/interfaces/legacy/ModuleXbmcvfs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/interfaces/legacy/ModuleXbmcvfs.cpp b/xbmc/interfaces/legacy/ModuleXbmcvfs.cpp
index 0c93f69724..b0952b9d13 100644
--- a/xbmc/interfaces/legacy/ModuleXbmcvfs.cpp
+++ b/xbmc/interfaces/legacy/ModuleXbmcvfs.cpp
@@ -84,7 +84,7 @@ namespace XBMCAddon
CFileItemList items;
CStdString strSource;
strSource = path;
- XFILE::CDirectory::GetDirectory(strSource, items);
+ XFILE::CDirectory::GetDirectory(strSource, items, "", XFILE::DIR_FLAG_NO_FILE_DIRS);
Tuple<std::vector<String>, std::vector<String> > ret;
// initialize the Tuple to two values