1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

update user display name

This commit is contained in:
Luke Pulverenti 2015-03-17 12:24:54 -04:00
parent 8ddabaf706
commit c5b0fd9b79

View file

@ -186,7 +186,7 @@ $(document).on('pageshow', "#supporterKeyPage", SupporterKeyPage.onPageShow);
var imgUrl = user.ImageUrl || 'css/images/userflyoutdefault.png'; var imgUrl = user.ImageUrl || 'css/images/userflyoutdefault.png';
html += '<img src="' + imgUrl + '" />'; html += '<img src="' + imgUrl + '" />';
html += '<h3>'; html += '<h3>';
html += user.DisplayName; html += (user.DisplayName || user.Name);
html += '</h3>'; html += '</h3>';
html += '<p>'; html += '<p>';
html += user.Email; html += user.Email;