Skip to content

Commit

Permalink
3.15.1 dont load/work on old DM800se, fixes #139
Browse files Browse the repository at this point in the history
  • Loading branch information
phunkyfish committed Nov 24, 2018
1 parent 4f9d08d commit 87ba00a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
1 change: 1 addition & 0 deletions pvr.vuplus/addon.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@
<news>
v3.15.2
- Fixed: Only load Season info extractor and genre mappers config when enabled, fixes #136
- Fixed: 3.15.1 dont load/work on old DM800se, fixes #139

v3.15.1
- Fixed: since 3.15.0 pvr manager cant start #134
Expand Down
1 change: 1 addition & 0 deletions pvr.vuplus/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
v3.15.2
- Fixed: Only load Season info extractor and genre mappers config when enabled, fixes #136
- Fixed: 3.15.1 dont load/work on old DM800se, fixes #139

v3.15.1
- Fixed: since 3.15.0 pvr manager cant start #134
Expand Down
9 changes: 6 additions & 3 deletions src/enigma2/Admin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -128,10 +128,13 @@ bool Admin::LoadDeviceInfo()
// Get DistroVersion
if (!XMLUtils::GetString(pElem, "e2distroversion", strTmp))
{
Logger::Log(LEVEL_ERROR, "%s Could not parse e2distroversion from result!", __FUNCTION__);
return false;
Logger::Log(LEVEL_NOTICE, "%s Could not parse e2distroversion from result, continuing as not available in all images!", __FUNCTION__);
strTmp = LocalizedString(60081); //unknown
}
else
{
distroVersion = strTmp.c_str();
}
distroVersion = strTmp.c_str();
Logger::Log(LEVEL_NOTICE, "%s - E2DistroVersion: %s", __FUNCTION__, distroVersion.c_str());

// Get WebIfVersion
Expand Down

0 comments on commit 87ba00a

Please sign in to comment.