From 134ce14e5aae08c1d1282ffd1b19383cfdb7f5b2 Mon Sep 17 00:00:00 2001 From: "Hedden, Kyle Matthew" Date: Tue, 28 May 2024 16:25:32 -0400 Subject: [PATCH] Digital PCT265 story PCT-135: Code review. Missing pageType check in ActionRestartModel. --- MVMCore/MVMCore/ActionHandling/ActionRestartModel.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/MVMCore/MVMCore/ActionHandling/ActionRestartModel.swift b/MVMCore/MVMCore/ActionHandling/ActionRestartModel.swift index 635c541..4cde79c 100644 --- a/MVMCore/MVMCore/ActionHandling/ActionRestartModel.swift +++ b/MVMCore/MVMCore/ActionHandling/ActionRestartModel.swift @@ -38,5 +38,6 @@ public struct ActionRestartModel: ActionModelProtocol { return extraParameters == model.extraParameters && analyticsData == model.analyticsData && requestURL == model.requestURL + && pageType == model.pageType } }