clay-server 2.30.0-beta.2 → 2.30.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -64,11 +64,6 @@ export function processMessage(msg) {
|
|
|
64
64
|
store.setState({ currentMsgTs: msg._ts || null });
|
|
65
65
|
var isMateDm = store.getState().dmMode && store.getState().dmTargetUser && store.getState().dmTargetUser.isMate;
|
|
66
66
|
|
|
67
|
-
// DEBUG: trace session/history loading
|
|
68
|
-
if (msg.type === "session_switched" || msg.type === "history_meta" || msg.type === "history_done" || msg.type === "mention_user" || msg.type === "mention_response") {
|
|
69
|
-
console.log("[DEBUG msg]", msg.type, msg.type === "session_switched" ? "id=" + msg.id + " cli=" + (msg.cliSessionId || "").substring(0, 8) : "", msg.type === "history_meta" ? "from=" + msg.from + " total=" + msg.total : "", msg.type === "mention_user" ? "mate=" + msg.mateName : "", "dmMode=" + store.getState().dmMode);
|
|
70
|
-
}
|
|
71
|
-
|
|
72
67
|
// Mate DM: update mate icon status indicators
|
|
73
68
|
if (isMateDm) updateMateIconStatus(msg);
|
|
74
69
|
|