Skip to content
This repository has been archived by the owner on Apr 15, 2023. It is now read-only.

Commit

Permalink
fixed: Need to look for addons in special://xbmcbin/ too thanks to py…
Browse files Browse the repository at this point in the history
…thon stupidity.

git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@31701 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
  • Loading branch information
althekiller committed Jul 10, 2010
1 parent c84cddf commit eb109c5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions xbmc/addons/AddonManager.cpp
Expand Up @@ -242,6 +242,7 @@ bool CAddonMgr::Init()
assert(m_cp_context);
status = m_cpluff->register_pcollection(m_cp_context, _P("special://home/addons"));
status = m_cpluff->register_pcollection(m_cp_context, _P("special://xbmc/addons"));
status = m_cpluff->register_pcollection(m_cp_context, _P("special://xbmcbin/addons"));
if (status != CP_OK)
{
CLog::Log(LOGERROR, "ADDONS: Fatal Error, cp_register_pcollection() returned status: %i", status);
Expand Down

0 comments on commit eb109c5

Please sign in to comment.