diff options
author | tamland <thomas.amland@gmail.com> | 2016-09-17 13:42:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-17 13:42:01 +0200 |
commit | aa5d1e59338d61de995f03bcd56ba5ed1cfc31c4 (patch) | |
tree | 46381ffb70db465184581f6dc0a044cd2024d9f1 | |
parent | 2ac599b2143b24750a4d45ae4010b069fe7d47e0 (diff) | |
parent | d9c8ff2ffc20f5fcb55768196464e09df4c73636 (diff) |
Merge pull request #10475 from tamland/fix_contextmenu_log17.0b2-Krypton
[contextmenu] remove incorrect log message
-rw-r--r-- | xbmc/ContextMenuManager.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/xbmc/ContextMenuManager.cpp b/xbmc/ContextMenuManager.cpp index 1c77511e92..4329c542d3 100644 --- a/xbmc/ContextMenuManager.cpp +++ b/xbmc/ContextMenuManager.cpp @@ -78,11 +78,7 @@ void CContextMenuManager::Init() void CContextMenuManager::ReloadAddonItems() { VECADDONS addons; - if (!m_addonMgr.GetAddons(addons, ADDON_CONTEXT_ITEM)) - { - CLog::Log(LOGERROR, "ContextMenuManager: failed to load addons."); - return; - } + m_addonMgr.GetAddons(addons, ADDON_CONTEXT_ITEM); std::vector<CContextMenuItem> addonItems; for (const auto& addon : addons) |