Skip to content

Commit 5cc9360

Browse files
authored
Minor fix for incorrect local variable name (#29347)
1 parent 5115504 commit 5cc9360

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/app/InteractionModelEngine.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -337,10 +337,10 @@ void InteractionModelEngine::OnDone(ReadHandler & apReadObj)
337337
#if CHIP_CONFIG_PERSIST_SUBSCRIPTIONS && CHIP_CONFIG_SUBSCRIPTION_TIMEOUT_RESUMPTION
338338
if (!mSubscriptionResumptionScheduled && HasSubscriptionsToResume())
339339
{
340-
mSubscriptionResumptionScheduled = true;
341-
auto timeTillNextResubscriptionSecs = ComputeTimeSecondsTillNextSubscriptionResumption();
342-
mpExchangeMgr->GetSessionManager()->SystemLayer()->StartTimer(System::Clock::Seconds32(timeTillNextResubscriptionSecs),
343-
ResumeSubscriptionsTimerCallback, this);
340+
mSubscriptionResumptionScheduled = true;
341+
auto timeTillNextSubscriptionResumptionSecs = ComputeTimeSecondsTillNextSubscriptionResumption();
342+
mpExchangeMgr->GetSessionManager()->SystemLayer()->StartTimer(
343+
System::Clock::Seconds32(timeTillNextSubscriptionResumptionSecs), ResumeSubscriptionsTimerCallback, this);
344344
mNumSubscriptionResumptionRetries++;
345345
}
346346
#endif // CHIP_CONFIG_PERSIST_SUBSCRIPTIONS

0 commit comments

Comments
 (0)