aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorronie <ronie@poedel.net>2015-12-08 19:08:46 +0100
committerronie <ronie@poedel.net>2015-12-08 19:08:46 +0100
commit0cec9ffd99e6dcc5fdfe0cd9d7721867700d2275 (patch)
treec1c4584080fcc907aa6f60d380909e61ac63d6c0
parentf4d3302fc4b661a1066ed8600efc671d81dd4744 (diff)
fix logging of failed dependency
-rw-r--r--xbmc/addons/AddonInstaller.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/addons/AddonInstaller.cpp b/xbmc/addons/AddonInstaller.cpp
index 901fc308cb..53424958ff 100644
--- a/xbmc/addons/AddonInstaller.cpp
+++ b/xbmc/addons/AddonInstaller.cpp
@@ -340,7 +340,7 @@ bool CAddonInstaller::CheckDependencies(const AddonPtr &addon,
database.Close();
// fill in the details of the failed dependency
- failedDep.first = addon->ID();
+ failedDep.first = addonID;
failedDep.second = version.asString();
return false;