Skip to content

Commit

Permalink
don't resolve file directories in xbmcvfs.listdir. fixes xbmc#13551
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Marshall committed Nov 15, 2012
1 parent fbf1bc2 commit c005c72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/interfaces/legacy/ModuleXbmcvfs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c005c72

Please sign in to comment.