Skip to content

Commit

Permalink
diagnostics: (jsonip.com)
Browse files Browse the repository at this point in the history
  • Loading branch information
koush committed Sep 10, 2024
1 parent 030c343 commit be284a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/diagnostics/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -256,12 +256,12 @@ class DiagnosticsPlugin extends ScryptedDeviceBase implements Settings {
throw new Error('Unrecognized Linux installation. Installation via Docker image or the official Proxmox LXC script is recommended.');
});

await this.validate('IPv4 Connectivity', httpFetch({
await this.validate('IPv4 Connectivity (jsonip.com)', httpFetch({
url: 'https://jsonip.com',
family: 4,
}).then(() => { }));

await this.validate('IPv6 Connectivity', httpFetch({
await this.validate('IPv6 Connectivity (jsonip.com)', httpFetch({
url: 'https://jsonip.com',
family: 6,
}).then(() => { }));
Expand Down

0 comments on commit be284a0

Please sign in to comment.