fix(email): do not attempt to display logo if app URL not configured (#2125)

* fix(email): do not attempt to display logo if app URL not configured

* fix(email): prevent Gmail from turning usernames with periods into hyperlinks

* fix(email): fix(email): use displayName instead of username/plexUserName and improve Gmail link fix
This commit is contained in:
TheCatLady
2021-10-18 10:08:50 -04:00
committed by GitHub
parent 032c14a226
commit b3b421a674
7 changed files with 106 additions and 135 deletions

View File

@@ -109,7 +109,7 @@ router.post(
const user = new User({
avatar: body.avatar ?? avatar,
username: body.username ?? body.email,
username: body.username,
email: body.email,
password: body.password,
permissions: settings.main.defaultPermissions,