Added logging

master
Keith Irwin 2022-09-13 10:57:14 -06:00
parent 9bcbe80f3e
commit f611b72234
Signed by: ki9
GPG Key ID: DF773B3F4A88DA86
1 changed files with 2 additions and 0 deletions

View File

@ -19,6 +19,7 @@ function PeerList() {
// Initial loading
self.getUser = async () => {
console.log(`Getting user...`)
let res; try {
res = await fetch(`${API_URL}/`)
} catch (err) {
@ -34,6 +35,7 @@ function PeerList() {
console.error('Failed to parse JSON!')
if (err) console.error(err)
}
console.log(user)
self.peers(
user.peers.sort(
(a,b) => a.ipv4.split('.')[3] - b.ipv4.split('.')[3])