Skip to content

Commit

Permalink
Merge pull request xbmc#8569 from MartijnKaijser/dircache
Browse files Browse the repository at this point in the history
don't use cached results for dir checks
  • Loading branch information
MartijnKaijser committed Dec 12, 2015
2 parents cd40569 + a4e4c8a commit 9e229a3
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 @@ -57,7 +57,7 @@ namespace XBMCAddon
{
DelayedCallGuard dg;
if (URIUtils::HasSlashAtEnd(path, true))
return XFILE::CDirectory::Exists(path);
return XFILE::CDirectory::Exists(path, false);
return XFILE::CFile::Exists(path, false);
}

Expand Down

0 comments on commit 9e229a3

Please sign in to comment.