@@ -631,7 +631,7 @@ DlStatus LockManager::GetWeekdaySchedule(chip::EndpointId endpointId, uint8_t we
631
631
632
632
error = mStorage ->SyncGetKeyValue (scheduleDataKey.KeyName (), &weekDayScheduleInStorage, scheduleSize);
633
633
634
- // If no data is found at scheduleUserMapKey key
634
+ // If no data is found at scheduleDataKey
635
635
if (error == CHIP_ERROR_PERSISTED_STORAGE_VALUE_NOT_FOUND)
636
636
{
637
637
ChipLogError (Zcl, " No schedule data found for user" );
@@ -723,7 +723,7 @@ DlStatus LockManager::GetYeardaySchedule(chip::EndpointId endpointId, uint8_t ye
723
723
724
724
error = mStorage ->SyncGetKeyValue (scheduleDataKey.KeyName (), &yearDayScheduleInStorage, scheduleSize);
725
725
726
- // If no data is found at scheduleUserMapKey key
726
+ // If no data is found at scheduleDataKey
727
727
if (error == CHIP_ERROR_PERSISTED_STORAGE_VALUE_NOT_FOUND)
728
728
{
729
729
ChipLogError (Zcl, " No schedule data found for user" );
@@ -808,7 +808,7 @@ DlStatus LockManager::GetHolidaySchedule(chip::EndpointId endpointId, uint8_t ho
808
808
809
809
error = mStorage ->SyncGetKeyValue (scheduleDataKey.KeyName (), &holidayScheduleInStorage, scheduleSize);
810
810
811
- // If no data is found at scheduleUserMapKey key
811
+ // If no data is found at scheduleDataKey
812
812
if (error == CHIP_ERROR_PERSISTED_STORAGE_VALUE_NOT_FOUND)
813
813
{
814
814
ChipLogError (Zcl, " No schedule data found for user" );
0 commit comments