mirror of
https://github.com/twisterarmy/twister-html.git
synced 2025-01-12 16:07:59 +00:00
add fallback to peer alias if there is no profile.fullname specified in redraw profile functions
This commit is contained in:
parent
f436931277
commit
e51032a53d
@ -556,6 +556,9 @@ function loadAvatarForEdit(peerAlias, req) {
|
||||
function redrawProfileAndAvatar(peerAlias, profileData, avatarData) {
|
||||
var containerElem;
|
||||
|
||||
if (!profileData.fullname)
|
||||
profileData.fullname = peerAlias;
|
||||
|
||||
if (peerAlias === defaultScreenName) {
|
||||
containerElem = $('.module .mini-profile-info, .userMenu .mini-profile-info');
|
||||
containerElem.find('.mini-profile-name').text(profileData.fullname);
|
||||
@ -614,6 +617,9 @@ function redrawProfileAndAvatar(peerAlias, profileData, avatarData) {
|
||||
function redrawProfile(peerAlias, profileData) {
|
||||
var containerElem;
|
||||
|
||||
if (!profileData.fullname)
|
||||
profileData.fullname = peerAlias;
|
||||
|
||||
if (peerAlias === defaultScreenName)
|
||||
$('.module .mini-profile-info, .userMenu .mini-profile-info')
|
||||
.find('.mini-profile-name').text(profileData.fullname);
|
||||
|
Loading…
Reference in New Issue
Block a user