FS-8066 Add encoded avatar url to userVariables so that mod_conference can use it when no video, or video mute
This commit is contained in:
parent
7efc1f3bfb
commit
3cedeaa67e
|
@ -636,7 +636,8 @@ vertoService.service('verto', ['$rootScope', '$cookieStore', '$location', 'stora
|
||||||
dedEnc: data.useDedenc,
|
dedEnc: data.useDedenc,
|
||||||
mirrorInput: data.mirrorInput,
|
mirrorInput: data.mirrorInput,
|
||||||
userVariables: {
|
userVariables: {
|
||||||
email : storage.data.email
|
email : storage.data.email,
|
||||||
|
avatar: "http://gravatar.com/avatar/" + md5(storage.data.email) + ".png?s=600"
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -672,7 +673,8 @@ vertoService.service('verto', ['$rootScope', '$cookieStore', '$location', 'stora
|
||||||
dedEnc: data.useDedenc,
|
dedEnc: data.useDedenc,
|
||||||
mirrorInput: data.mirrorInput,
|
mirrorInput: data.mirrorInput,
|
||||||
userVariables: {
|
userVariables: {
|
||||||
email : storage.data.email
|
email : storage.data.email,
|
||||||
|
avatar: "http://gravatar.com/avatar/" + md5(storage.data.email) + ".png?s=600"
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue