summaryrefslogtreecommitdiff
path: root/templates/account.html.ep
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2019-05-11 01:42:14 +0200
committerDaniel Friesel <derf@finalrewind.org>2019-05-11 01:42:14 +0200
commit736e36d45c79164e9791d8639a0cfefd3ef629b3 (patch)
tree415b6552a6293c90c4f96ef4f36def60f1730428 /templates/account.html.ep
parent59c677ba12365f0ed2996005fcc6ce1281069be9 (diff)
account: fix uninitialized value warning
Diffstat (limited to 'templates/account.html.ep')
-rw-r--r--templates/account.html.ep2
1 files changed, 1 insertions, 1 deletions
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 @@
<th scope="row">Web Hook</th>
<td>
<a href="/account/hooks"><i class="material-icons">edit</i></a>
- % if ($hook->{enabled} == 0) {
+ % if (not $hook->{enabled}) {
<span style="color: #999999;">Nicht eingerichtet</span>
% }
% elsif ($hook->{latest_run}->epoch == 0) {