@hoverlover/cc-discord 0.5.3 → 0.5.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hoverlover/cc-discord",
3
- "version": "0.5.3",
3
+ "version": "0.5.4",
4
4
  "description": "Discord <-> Claude Code relay: use your Claude subscription to power per-channel AI bots",
5
5
  "type": "module",
6
6
  "bin": {
@@ -97,7 +97,7 @@ discover_channels_lines() {
97
97
  local response
98
98
  response=$(curl -s --max-time 10 \
99
99
  -H "x-api-token: ${RELAY_API_TOKEN}" \
100
- "${RELAY_URL}/api/channels" 2>/dev/null) || {
100
+ "${RELAY_URL}/api/channels?include_threads=true" 2>/dev/null) || {
101
101
  log "WARNING: Failed to reach relay at ${RELAY_URL}"
102
102
  return
103
103
  }