Fix profile loading in RHS on refresh

Этот коммит содержится в:
JoramWilander
2015-11-12 12:13:26 -05:00
родитель 13a251a5ee
Коммит 83d34dcc6c
2 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@@ -164,6 +164,10 @@ class UserStoreClass extends EventEmitter {
}
getProfile(userId) {
if (userId === this.getCurrentId()) {
return this.getCurrentUser();
}
return this.getProfiles()[userId];
}