account: fix uninitialized value warning
This commit is contained in:
parent
59c677ba12
commit
736e36d45c
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue