From 736e36d45c79164e9791d8639a0cfefd3ef629b3 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Sat, 11 May 2019 01:42:14 +0200 Subject: account: fix uninitialized value warning --- templates/account.html.ep | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'templates/account.html.ep') diff --git a/templates/account.html.ep b/templates/account.html.ep index 05e0447..f41f07f 100644 --- a/templates/account.html.ep +++ b/templates/account.html.ep @@ -59,7 +59,7 @@ Web Hook edit - % if ($hook->{enabled} == 0) { + % if (not $hook->{enabled}) { Nicht eingerichtet % } % elsif ($hook->{latest_run}->epoch == 0) { -- cgit v1.2.3