diff options
author | Thomas Amland <thomas.amland@gmail.com> | 2016-03-20 21:30:03 +0100 |
---|---|---|
committer | Thomas Amland <thomas.amland@gmail.com> | 2016-03-25 19:31:44 +0100 |
commit | 18d51c5d29bec2881ad1b1754594114367edc59e (patch) | |
tree | 6e9b4cffb2504ae5b39f1893bec8884c3d113cb5 | |
parent | 47d207a96b141a40fb7435e7767f8abb75ddaa8b (diff) |
never cache addons directories
-rw-r--r-- | xbmc/filesystem/AddonsDirectory.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xbmc/filesystem/AddonsDirectory.cpp b/xbmc/filesystem/AddonsDirectory.cpp index 0748079ede..c68b2cf9fd 100644 --- a/xbmc/filesystem/AddonsDirectory.cpp +++ b/xbmc/filesystem/AddonsDirectory.cpp @@ -451,6 +451,7 @@ bool CAddonsDirectory::GetDirectory(const CURL& url, CFileItemList &items) CURL path(tmp); const std::string endpoint = path.GetHostName(); items.ClearProperties(); + items.SetCacheToDisc(CFileItemList::CACHE_NEVER); items.SetPath(path.Get()); if (endpoint == "user") |