Skip to content

Commit

Permalink
fixed: when using login start service addons on every login also on s…
Browse files Browse the repository at this point in the history
…tartup. this mimics the old behavior. still we need to review service addons for b3 probably.
  • Loading branch information
WiSo committed Jan 19, 2012
1 parent 644c700 commit e1f212a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/addons/AddonManager.cpp
Expand Up @@ -760,7 +760,7 @@ bool CAddonMgr::StartServices(const bool beforelogin)
if (service)
{
if ( (beforelogin && service->GetStartOption() == CService::STARTUP)
|| (!beforelogin && service->GetStartOption() == CService::LOGIN) )
|| (service->GetStartOption() == CService::LOGIN) )
ret &= service->Start();
}
}
Expand Down

0 comments on commit e1f212a

Please sign in to comment.