Fix User Menu avatar colouring being based on wrong string
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>pull/21833/head
							parent
							
								
									fa1a956733
								
							
						
					
					
						commit
						0170fa608e
					
				|  | @ -452,7 +452,8 @@ export default class UserMenu extends React.Component<IProps, IState> { | |||
|     public render() { | ||||
|         const avatarSize = 32; // should match border-radius of the avatar
 | ||||
| 
 | ||||
|         const displayName = OwnProfileStore.instance.displayName || MatrixClientPeg.get().getUserId(); | ||||
|         const userId = MatrixClientPeg.get().getUserId(); | ||||
|         const displayName = OwnProfileStore.instance.displayName || userId; | ||||
|         const avatarUrl = OwnProfileStore.instance.getHttpAvatarUrl(avatarSize); | ||||
| 
 | ||||
|         const prototypeCommunityName = CommunityPrototypeStore.instance.getSelectedCommunityName(); | ||||
|  | @ -507,7 +508,7 @@ export default class UserMenu extends React.Component<IProps, IState> { | |||
|                     <div className="mx_UserMenu_row"> | ||||
|                         <span className="mx_UserMenu_userAvatarContainer"> | ||||
|                             <BaseAvatar | ||||
|                                 idName={displayName} | ||||
|                                 idName={userId} | ||||
|                                 name={displayName} | ||||
|                                 url={avatarUrl} | ||||
|                                 width={avatarSize} | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue
	
	 Michael Telatynski
						Michael Telatynski