aboutsummaryrefslogtreecommitdiff
path: root/lib/MasterWebInterface/Handler
diff options
context:
space:
mode:
authorDarkelarious <darkelarious@333networks.com>2022-08-19 17:00:31 +0200
committerDarkelarious <darkelarious@333networks.com>2022-08-19 17:00:31 +0200
commitc5f43733533fe9b5708bd065a12c5fac86ccebed (patch)
tree4fbc00da35e353eca9193500993b44e8f62c281c /lib/MasterWebInterface/Handler
parente8be3c0138d4180a905996f412a4f0ed5ace56d9 (diff)
downloadWebInterface-Perl-c5f43733533fe9b5708bd065a12c5fac86ccebed.tar.gz
WebInterface-Perl-c5f43733533fe9b5708bd065a12c5fac86ccebed.zip
untighten parameter checks
Diffstat (limited to 'lib/MasterWebInterface/Handler')
-rwxr-xr-xlib/MasterWebInterface/Handler/Json/JsonServerInfo.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/MasterWebInterface/Handler/Json/JsonServerInfo.pm b/lib/MasterWebInterface/Handler/Json/JsonServerInfo.pm
index 2ff6194..a3b2d08 100755
--- a/lib/MasterWebInterface/Handler/Json/JsonServerInfo.pm
+++ b/lib/MasterWebInterface/Handler/Json/JsonServerInfo.pm
@@ -21,7 +21,7 @@ sub json_serverinfo
ip => $ip,
hostport => $port,
limit => 1,
- )->[0] if ($ip && $port);
+ )->[0];
# allow all outside sources to access the json api
$self->resHeader("Access-Control-Allow-Origin", "*");
@@ -33,8 +33,8 @@ sub json_serverinfo
$self->resJSON({
error => 1,
in => "not_in_db",
- ip => $ip,
- port => $port,
+ ip => $ip // "0.0.0.0",
+ port => $port // 0,
});
return;
}