mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 22:17:30 -07:00
Fix overlap betwen favicon and splash icon
This commit is contained in:
parent
ba04591450
commit
093de831a3
2 changed files with 5 additions and 4 deletions
|
@ -530,16 +530,17 @@ router.get('(.*)', async ctx => {
|
|||
if (meta.customMOTD.length > 0) {
|
||||
motd = meta.customMOTD;
|
||||
}
|
||||
let iconUrl = meta.iconUrl;
|
||||
let splashIconUrl = meta.iconUrl;
|
||||
if (meta.customSplashIcons.length > 0) {
|
||||
iconUrl = meta.customSplashIcons[Math.floor(Math.random() * meta.customSplashIcons.length)];
|
||||
splashIconUrl = meta.customSplashIcons[Math.floor(Math.random() * meta.customSplashIcons.length)];
|
||||
}
|
||||
await ctx.render('base', {
|
||||
img: meta.bannerUrl,
|
||||
title: meta.name || 'Calckey',
|
||||
instanceName: meta.name || 'Calckey',
|
||||
desc: meta.description,
|
||||
icon: iconUrl,
|
||||
icon: meta.iconUrl,
|
||||
splashIcon: splashIconUrl,
|
||||
themeColor: meta.themeColor,
|
||||
privateMode: meta.privateMode,
|
||||
randomMOTD: motd[Math.floor(Math.random() * motd.length)],
|
||||
|
|
|
@ -77,7 +77,7 @@ html
|
|||
br
|
||||
| Please turn on your JavaScript
|
||||
div#splash
|
||||
img#splashIcon(src= icon || '/static-assets/splash.png')
|
||||
img#splashIcon(src= splashIcon || '/static-assets/splash.png')
|
||||
span#splashText
|
||||
block randomMOTD
|
||||
= randomMOTD
|
||||
|
|
Loading…
Reference in a new issue