diff options
author | Teddy Wing | 2018-11-13 22:27:14 +0100 |
---|---|---|
committer | Teddy Wing | 2018-11-13 22:27:14 +0100 |
commit | 03dae84c7aa569e84513a8c9bd167a00e11debaa (patch) | |
tree | e0bde13b99c036da2c806f8576b0edfa6e192d72 /internal_error.in.html | |
parent | d55de8c8cd746a7d5c537c3b2ca49994d3007b66 (diff) | |
download | dome-key-web-03dae84c7aa569e84513a8c9bd167a00e11debaa.tar.bz2 |
internal_error.html: Fix logo image
Hadn't tested this when I made it. Was outputting a formatted byte
string instead of the plain base64, which resulted in `b'BASE_64'` being
inserted. Output the real base64 to get the image to decode properly.
Diffstat (limited to 'internal_error.in.html')
-rw-r--r-- | internal_error.in.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal_error.in.html b/internal_error.in.html index 9028153..3428447 100644 --- a/internal_error.in.html +++ b/internal_error.in.html @@ -15,7 +15,7 @@ <div class="content"> <header> <h1>DomeKey</h1> - <img src="data:image/png;base64,${LOGO_DATA}" alt="DomeKey logo" /> + <img src="data:image/svg+xml;base64,${LOGO_DATA}" alt="DomeKey logo" /> </header> <p class="font-size-1.52 color-maroon"> |