avoid replacing _ in device types

This commit is contained in:
Amalka Subasinghe 2023-04-21 22:31:45 +05:30
parent 3c6685f468
commit 3b7544770d

View File

@ -826,8 +826,7 @@ public class DeviceManagementServiceImpl implements DeviceManagementService {
deviceConfig.setClientId(dcrResponse.getClientId()); deviceConfig.setClientId(dcrResponse.getClientId());
deviceConfig.setClientSecret(dcrResponse.getClientSecret()); deviceConfig.setClientSecret(dcrResponse.getClientSecret());
StringBuilder scopes = new StringBuilder("device_" + type.replace(" ", "") StringBuilder scopes = new StringBuilder("device_" + type.replace(" ", "") + "_" + id);
.replace("_", "") + "_" + id);
for (String topic : mqttEventTopicStructure) { for (String topic : mqttEventTopicStructure) {
if (topic.contains("${deviceId}")) { if (topic.contains("${deviceId}")) {
topic = topic.replace("${deviceId}", id); topic = topic.replace("${deviceId}", id);