...
|
...
|
@@ -66,6 +66,13 @@ export function goToMessageCenter() { |
|
|
};
|
|
|
}
|
|
|
|
|
|
export function goToSetting() {
|
|
|
Actions.Setting();
|
|
|
return {
|
|
|
type: GO_TO_SETTING,
|
|
|
};
|
|
|
}
|
|
|
|
|
|
export function userDidLogout() {
|
|
|
return {
|
|
|
type: USER_DID_LOGOUT,
|
...
|
...
|
@@ -708,7 +715,7 @@ function parseReply(json) { |
|
|
let self = {
|
|
|
avatar: reply && reply.headIcon ? reply.headIcon : '',
|
|
|
backgroundImage: reply && reply.bgPic ? reply.bgPic : '',
|
|
|
uid: reply && reply.uid ? reply.uid : '',
|
|
|
uid: reply && reply.uid ? reply.uid : 0,
|
|
|
name: reply && reply.nickName ? reply.nickName : '',
|
|
|
signature: reply && reply.signature ? reply.signature : '',
|
|
|
};
|
...
|
...
|
|