Fix bookmark shortcut for custom icons

`shortcut` was missing from the favicon header setup when using custom icons.
pull/3110/head
Bruno Henriques 3 months ago committed by GitHub
parent 247f73f0db
commit 43c92fd1c9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -376,7 +376,7 @@ function Home({ initialSettings }) {
{settings.base && <base href={settings.base} />} {settings.base && <base href={settings.base} />}
{settings.favicon ? ( {settings.favicon ? (
<> <>
<link rel="icon" href={settings.favicon} /> <link rel="shortcut icon" href={settings.favicon} />
<link rel="apple-touch-icon" sizes="180x180" href={settings.favicon} /> <link rel="apple-touch-icon" sizes="180x180" href={settings.favicon} />
</> </>
) : ( ) : (

Loading…
Cancel
Save