Skip to content

Commit 988e985

Browse files
committed
修复参数类型错误
1 parent 493ecf2 commit 988e985

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hsweb-core/src/main/java/org/hswebframework/web/aop/MethodInterceptorHolder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ public boolean handleReactiveArguments(Function<Publisher<?>, Publisher<?>> hand
114114
for (int i = 0; i < args.length; i++) {
115115
Object arg = args[i];
116116
if (arg instanceof Publisher) {
117-
args[i] = handler.apply(((Mono) arg));
117+
args[i] = handler.apply(((Publisher<?>) arg));
118118
handled = true;
119119
}
120120
}

0 commit comments

Comments
 (0)