mirror of
https://github.com/Luzifer/streamdeck.git
synced 2024-12-20 17:51:21 +00:00
Fix: Remove json from displayed text
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
b537cc0d31
commit
74979e2672
1 changed files with 3 additions and 0 deletions
|
@ -70,6 +70,9 @@ func (d displayElementExec) Display(ctx context.Context, idx int, attributes map
|
||||||
|
|
||||||
tmpAttrs := map[string]interface{}{}
|
tmpAttrs := map[string]interface{}{}
|
||||||
if err = json.Unmarshal(buf.Bytes(), &tmpAttrs); err == nil {
|
if err = json.Unmarshal(buf.Bytes(), &tmpAttrs); err == nil {
|
||||||
|
// Reset text to empty as it was parsable json
|
||||||
|
attributes["text"] = ""
|
||||||
|
|
||||||
for k, v := range tmpAttrs {
|
for k, v := range tmpAttrs {
|
||||||
attributes[k] = v
|
attributes[k] = v
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue