Open ndr-brt opened 3 years ago
In the highlight messages now I receive the id correctly, but if I send an id like: d1 i receive in the message an id like that: "d1"
highlight
d1
"d1"
so I have to remove the double quotes to match it
Hmm right.. This is because via ghci you can use any type with a Show instance.. But with tidal-listener it's always a string. I guess we should remove the quotes on the server side as they are indeed redundant.
In the
highlight
messages now I receive the id correctly, but if I send an id like:d1
i receive in the message an id like that:"d1"
so I have to remove the double quotes to match it