Skip to content

Commit 44b0469

Browse files
committed
fix repeat未传递data值问题
1 parent 475eb15 commit 44b0469

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

assists/src/main/java/com/ven/assists/stepper/StepOperator.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ class StepOperator(
9595

9696
Step.repeat -> {
9797
repeatCount++
98-
StepManager.execute(implClassName, step, delay = nextStep.delay)
98+
StepManager.execute(implClassName, step, delay = nextStep.delay, data = nextStep.data)
9999
}
100100

101101
else -> {

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ buildscript {
99
targetSdk = 33
1010

1111
// 应用版本
12-
versionCode = 5
13-
versionName = "3.2.12"
14-
mavenVersion = "3.2.12"
12+
versionCode = 6
13+
versionName = "3.2.13"
14+
mavenVersion = "3.2.13"
1515

1616
// 依赖库版本
1717
coreKtxVersion = "1.13.1"

0 commit comments

Comments
 (0)