Skip to content

Commit

Permalink
优化拦截器
Browse files Browse the repository at this point in the history
  • Loading branch information
wushuo894 committed Sep 25, 2024
1 parent 5e231b8 commit bd8e260
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/emby/util/ServerUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public static SimpleServer create(String... args) {
res.send404("404 Not Found");
return;
}
if (Ipv4Util.isInnerIP(ip)) {
if (!Ipv4Util.isInnerIP(ip)) {
res.send404("404 Not Found");
return;
}
Expand Down

0 comments on commit bd8e260

Please sign in to comment.