mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-08-01 13:33:48 +08:00
## 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.