diff options
author | Erik Michelson | 2020-11-27 11:29:34 +0100 |
---|---|---|
committer | Erik Michelson | 2020-11-27 11:29:34 +0100 |
commit | 68c8f2860dd85f984e68b05393fbfdab0eec88c6 (patch) | |
tree | 142f2af99eb9c8876a677951caf925cd37d9ddd5 /public/views/index | |
parent | 07f72adc548ab8b30c4dbcc948f7cf166fdcf0db (diff) |
Fixed shortcut icon urls pointing to old (nonexistent) files
Signed-off-by: Erik Michelson <github@erik.michelson.eu>
Diffstat (limited to 'public/views/index')
-rw-r--r-- | public/views/index/head.ejs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public/views/index/head.ejs b/public/views/index/head.ejs index 2b751d34..900d6324 100644 --- a/public/views/index/head.ejs +++ b/public/views/index/head.ejs @@ -11,7 +11,7 @@ <meta property="og:description" content="<%= __('Best way to write and share your knowledge in markdown.') %>"> <meta property="og:type" content="website"> <meta property="og:url" content="<%- serverURL %>"> -<meta property="og:image" content="<%- serverURL %>/icons/android-chrome-512x512"> +<meta property="og:image" content="<%- serverURL %>/icons/android-chrome-512x512.png"> <meta property="og:image:alt" content="HedgeDoc logo"> <meta property="og:image:type" content="image/png"> <base href="<%- serverURL %>/"> |