braid-text 0.2.97 → 0.2.98
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.
- package/index.js +1 -1
- package/package.json +1 -1
- package/.claude/settings.local.json +0 -9
package/index.js
CHANGED
|
@@ -140,7 +140,7 @@ function create_braid_text() {
|
|
|
140
140
|
if (closed) return
|
|
141
141
|
disconnect()
|
|
142
142
|
var delay = waitTime * 1000
|
|
143
|
-
console.log(`disconnected, retrying in ${waitTime} second${waitTime > 1 ? 's' : ''}`)
|
|
143
|
+
console.log(`disconnected from ${b}, retrying in ${waitTime} second${waitTime > 1 ? 's' : ''}`)
|
|
144
144
|
setTimeout(connect, delay)
|
|
145
145
|
waitTime = Math.min(waitTime + 1, 3)
|
|
146
146
|
}
|
package/package.json
CHANGED