Skip to content

Commit a449ab2

Browse files
committed
Fix indox.html
1 parent c3d43a1 commit a449ab2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

www/indox.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
<script>
1414
fetch("ip.txt")
1515
.then(async (response) => {
16-
fetch(await response.text)
16+
fetch(await response.text())
1717
.then((response2) => {
1818
console.log(response2);
19-
console.log(response2.text);
19+
console.log(response2.text());
2020
})
2121
.catch(console.error);
2222
})

0 commit comments

Comments
 (0)