From b373588e29513957029e4654537d0bf59beeb345 Mon Sep 17 00:00:00 2001 From: AMIT KUMAR <amit.kumar@tarento.com> Date: Wed, 25 Aug 2021 11:01:41 +0530 Subject: [PATCH] Nic notification change (#920) * Issue #SB-0000 feat: notification change * Issue #SB-0000 feat: notification change --- .../notification/sms/providerimpl/NICGatewaySmsProvider.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/sunbird-notification/src/main/java/org/sunbird/notification/sms/providerimpl/NICGatewaySmsProvider.java b/core/sunbird-notification/src/main/java/org/sunbird/notification/sms/providerimpl/NICGatewaySmsProvider.java index f2047c13f..d4b902c7e 100644 --- a/core/sunbird-notification/src/main/java/org/sunbird/notification/sms/providerimpl/NICGatewaySmsProvider.java +++ b/core/sunbird-notification/src/main/java/org/sunbird/notification/sms/providerimpl/NICGatewaySmsProvider.java @@ -108,9 +108,9 @@ public class NICGatewaySmsProvider implements ISmsProvider { if (JsonUtil.isStringNullOREmpty(password)) { password = PropertiesCache.getInstance().getProperty("nic_sms_gateway_provider_password"); } - dltEntityId = System.getenv("diksha_dlt_entity_id"); + dltEntityId = System.getenv("dlt_entity_id"); if (JsonUtil.isStringNullOREmpty(dltEntityId)) { - dltEntityId = PropertiesCache.getInstance().getProperty("diksha_dlt_entity_id"); + dltEntityId = PropertiesCache.getInstance().getProperty("dlt_entity_id"); } return validateSettings(); } -- GitLab