File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -249,8 +249,8 @@ bool ICDManager::CheckInWouldBeSentAtActiveModeVerifier(FabricIndex aFabricIndex
249
249
VerifyOrReturnValue (mSubInfoProvider ->SubjectHasActiveSubscription (aFabricIndex, subjectID), true );
250
250
251
251
#if CHIP_CONFIG_PERSIST_SUBSCRIPTIONS
252
- // At least one registration has a persisted entry. Do not send Check-In message.
253
- // This is to cover the use-case where the subscription resumption feature is used with the Check-In message .
252
+ // If at least one registration has a persisted entry, do not send Check-In message.
253
+ // The resumption of the persisted subscription will serve the same function a check-in would have served .
254
254
VerifyOrReturnValue (mSubInfoProvider ->SubjectHasPersistedSubscription (aFabricIndex, subjectID), true );
255
255
#endif // CHIP_CONFIG_PERSIST_SUBSCRIPTIONS
256
256
return false ;
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ class ICDManager : public ICDListener
85
85
* This type can be used to implement specific verifiers that can be used in the CheckInMessagesWouldBeSent function.
86
86
* The goal is to avoid having multiple functions that implement the iterator loop with only the check changing.
87
87
*
88
- * @return true if at least one Check-In message wuld be sent
88
+ * @return true if at least one Check-In message would be sent
89
89
* false No Check-In messages would be sent
90
90
*/
91
91
You can’t perform that action at this time.
0 commit comments