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 35a8b6e commit c582435Copy full SHA for c582435
core/message.go
@@ -48,7 +48,7 @@ func (msg *Message) String() string {
48
//GetProperty get message property by key string
49
func (msg *Message) GetProperty(key string) string {
50
if msg.Property != nil {
51
- v, ok := msg.Property["key"]
+ v, ok := msg.Property[key]
52
if ok {
53
return v
54
}
0 commit comments