diff --git a/HdcpProfile/CHANGELOG.md b/HdcpProfile/CHANGELOG.md index 1721feb5e9..cf9b1f2551 100644 --- a/HdcpProfile/CHANGELOG.md +++ b/HdcpProfile/CHANGELOG.md @@ -16,6 +16,10 @@ All notable changes to this RDK Service will be documented in this file. * For more details, refer to [versioning](https://github.com/rdkcentral/rdkservices#versioning) section under Main README. +## [1.0.8] - 2024-05-06 +### Fixed +- Fixed Handled Exception for DeviceSettings init + ## [1.0.7] - 2024-03-29 ### Security - Resolved security vulnerabilities diff --git a/HdcpProfile/HdcpProfile.cpp b/HdcpProfile/HdcpProfile.cpp index ed4ddf4012..3ff3fec2fd 100644 --- a/HdcpProfile/HdcpProfile.cpp +++ b/HdcpProfile/HdcpProfile.cpp @@ -43,7 +43,7 @@ #define API_VERSION_NUMBER_MAJOR 1 #define API_VERSION_NUMBER_MINOR 0 -#define API_VERSION_NUMBER_PATCH 7 +#define API_VERSION_NUMBER_PATCH 8 namespace WPEFramework { @@ -82,7 +82,15 @@ namespace WPEFramework { HdcpProfile::_instance = this; InitializeIARM(); - device::Manager::Initialize(); + try + { + device::Manager::Initialize(); + LOGINFO("HdcpProfile device::Manager::Initialize success"); + } + catch(...) + { + LOGINFO("HdcpProfile device::Manager::Initialize failed"); + } return (string()); }