Files
ragflow/internal/channels
jay77721 cef23ce686 fix(channels): rename stringValue to anyToString in qqbot.go to resolve redeclaration (#17610)
## Summary
- Fixes a compile error in `internal/channels/qqbot.go`: the local
`stringValue(value any)` helper collided with the existing
`stringValue(value *string)` in `feishu.go` within the same package
(`stringValue redeclared in this block`).
- Rename the qqbot variant to `anyToString` (definition + 13 call
sites). The two helpers do different jobs (any->string via `fmt.Sprint`
vs. `*string` deref), so they are not merged.
2026-07-31 12:17:25 +08:00
..