diff options
author | tamland <thomas.amland@gmail.com> | 2016-06-20 18:38:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-20 18:38:31 +0200 |
commit | bb5c4f4174b234d4d299662800a87d28b3068275 (patch) | |
tree | 2a9943048d090db87052acd4e12c41f7e92db31c | |
parent | 16dfe736da501b9d357cbd5106f74f13a4ca4137 (diff) | |
parent | 3e937db2414c6e0d05f077e527bed03707b05f2f (diff) |
Merge pull request #10004 from phil65/fix_addons_folderpath
[addons] - fix folderpath in case only one repo is available
-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 4b2713c24e..f176161155 100644 --- a/xbmc/filesystem/AddonsDirectory.cpp +++ b/xbmc/filesystem/AddonsDirectory.cpp @@ -348,6 +348,7 @@ static bool Browse(const CURL& path, CFileItemList &items) const std::string repo = path.GetHostName(); VECADDONS addons; + items.SetPath(path.Get()); if (repo == "all") { CAddonDatabase database; |