diff options
author | Daniel Friesel <derf@finalrewind.org> | 2019-12-20 16:23:05 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2019-12-20 16:23:05 +0100 |
commit | d0589781be804951eeec423cf5ea94d6840b27e3 (patch) | |
tree | 9d615d11f9f5f5b304a52ebcdf453752380d32df /templates/account.html.ep | |
parent | ebb7c22a4b5c3666e979e14808c3baceb1b631a3 (diff) |
account: use correct token type for travel API
Diffstat (limited to 'templates/account.html.ep')
-rw-r--r-- | templates/account.html.ep | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/account.html.ep b/templates/account.html.ep index 2cc7f35..e6a4576 100644 --- a/templates/account.html.ep +++ b/templates/account.html.ep @@ -174,8 +174,8 @@ <tr> <th scope="row">Travel</th> <td> - % if ($token->{action}) { - %= $acc->{id} . '-' . $token->{action} + % if ($token->{travel}) { + %= $acc->{id} . '-' . $token->{travel} % } % else { — |