sa-token-solon-plugin: 修复一个笔误

This commit is contained in:
noear 2021-06-05 19:14:44 +08:00
parent c5d726952a
commit d8081274ab

View File

@ -43,6 +43,6 @@ public class SaContextForSolon implements SaTokenContext {
*/
@Override
public boolean matchPath(String pattern, String path) {
return PathAnalyzer.get(path).matches(path);
return PathAnalyzer.get(pattern).matches(path);
}
}