Use "ente Photos" as the title for albums

This commit is contained in:
Vishnu 2023-05-13 20:51:49 +05:30
parent 368d8bc506
commit 8387a1a917

View file

@ -42,7 +42,7 @@ export const getAppNameAndTitle = () => {
const albumsURL = new URL(getAlbumsURL()); const albumsURL = new URL(getAlbumsURL());
const authURL = new URL(getAuthURL()); const authURL = new URL(getAuthURL());
if (currentURL.origin === albumsURL.origin) { if (currentURL.origin === albumsURL.origin) {
return { name: APPS.ALBUMS, title: 'ente Albums' }; return { name: APPS.ALBUMS, title: 'ente Photos' };
} else if (currentURL.origin === authURL.origin) { } else if (currentURL.origin === authURL.origin) {
return { name: APPS.AUTH, title: 'ente Auth' }; return { name: APPS.AUTH, title: 'ente Auth' };
} else { } else {