diff options
author | ronie <ronie@poedel.net> | 2015-12-08 19:08:46 +0100 |
---|---|---|
committer | ronie <ronie@poedel.net> | 2015-12-08 19:08:46 +0100 |
commit | 0cec9ffd99e6dcc5fdfe0cd9d7721867700d2275 (patch) | |
tree | c1c4584080fcc907aa6f60d380909e61ac63d6c0 | |
parent | f4d3302fc4b661a1066ed8600efc671d81dd4744 (diff) |
fix logging of failed dependency
-rw-r--r-- | xbmc/addons/AddonInstaller.cpp | 2 |
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; |