We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a053f2 commit cbf9aa4Copy full SHA for cbf9aa4
changelog.md
@@ -2,6 +2,7 @@
2
3
## Version 0.62.5 (2025-05-20)
4
1. Fixed (another) bug with advanced map
5
+1. Fixed bug with chat
6
7
## Version 0.62.4 (2025-04-14)
8
1. Fixed bug with advanced map
src/hooks/chat.js
@@ -91,6 +91,9 @@ export default function reconnect(force = false) {
91
}
92
93
function getMessages({ discussionHistory, otherHistory }) {
94
+ if (!discussionHistory || !otherHistory) {
95
+ return [];
96
+ }
97
const history = [
98
...JSON.parse(discussionHistory),
99
...JSON.parse(otherHistory),
0 commit comments