Show mxid in call bar for users with no displayname

pull/10/head
David Baker 2014-09-10 11:21:20 +01:00
parent 55fe0d8adc
commit 7411794fa1
1 changed files with 6 additions and 1 deletions

View File

@ -96,9 +96,14 @@ angular.module('MatrixWebClientController', ['matrixService', 'mPresence', 'even
delete roomMembers[matrixService.config().user_id]; delete roomMembers[matrixService.config().user_id];
$rootScope.currentCall.user_id = Object.keys(roomMembers)[0]; $rootScope.currentCall.user_id = Object.keys(roomMembers)[0];
// set it to the user ID until we fetch the display name
$rootScope.currentCall.userProfile = { displayname: $rootScope.currentCall.user_id };
matrixService.getProfile($rootScope.currentCall.user_id).then( matrixService.getProfile($rootScope.currentCall.user_id).then(
function(response) { function(response) {
$rootScope.currentCall.userProfile = response.data; if (response.data.displayname) $rootScope.currentCall.userProfile.displayname = response.data.displayname;
if (response.data.avatar_url) $rootScope.currentCall.userProfile.avatar_url = response.data.avatar_url;
}, },
function(error) { function(error) {
$scope.feedback = "Can't load user profile"; $scope.feedback = "Can't load user profile";