Skip to content

Commit

Permalink
smallFix
Browse files Browse the repository at this point in the history
  • Loading branch information
ircfspace committed Mar 2, 2024
1 parent bb0acf7 commit 90c483a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/hooks/useIPScanner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ export const useIPScanner = ({ allIps }: IPScannerProps) => {
async function testIPs(ipList: string[]) {
for (const ip of ipList) {
increaseTestNo();
const url = `http://${ip}/__down`;
const url = `http://${ip}:80/cdn-cgi/trace`;

let testCount = 0;

Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ const Home: NextPage = () => {
</>
): (
<>

</>
)}
</>
Expand Down

0 comments on commit 90c483a

Please sign in to comment.