mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-11 05:03:08 +02:00
f6154dc0af
Co-authored-by: MeiMei <30769358+mei23@users.noreply.github.com> Co-authored-by: Satsuki Yanagi <17376330+u1-liquid@users.noreply.github.com>
8 lines
219 B
TypeScript
8 lines
219 B
TypeScript
export function getInstanceName() {
|
|
const siteName = document.querySelector('meta[property="og:site_name"]') as HTMLMetaElement;
|
|
if (siteName && siteName.content) {
|
|
return siteName.content;
|
|
}
|
|
|
|
return 'Misskey';
|
|
}
|