mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-22 20:19:21 +00:00
Fixed issue on userinfos cache
This commit is contained in:
parent
736f740d05
commit
96d86ce97a
@ -25,8 +25,8 @@ ComunicWeb.user.userInfos = {
|
||||
userID = ComunicWeb.user.userLogin.__userID;
|
||||
|
||||
//First, check if informations are already available in the cache
|
||||
if(this.usersInfos[userID]){
|
||||
afterGetUserInfos(this.usersInfos[userID]); //Then return these informations now
|
||||
if(this.usersInfos["user-"+userID]){
|
||||
afterGetUserInfos(this.usersInfos["user-"+userID]); //Then return these informations now
|
||||
return true;
|
||||
}
|
||||
|
||||
@ -48,7 +48,7 @@ ComunicWeb.user.userInfos = {
|
||||
}
|
||||
else {
|
||||
//Save result
|
||||
ComunicWeb.user.userInfos.usersInfos[""+userID] = result[0];
|
||||
ComunicWeb.user.userInfos.usersInfos["user-"+userID] = result[0];
|
||||
|
||||
//Return result
|
||||
afterGetUserInfos(result[0]);
|
||||
|
Loading…
Reference in New Issue
Block a user