for the first time, I used setUserProperty with an array and I found out that your Log method is useless with arrays (it only prints the array type).
I fixed all the array logs to display the content of the array:
Log ($"C# setUserProperty {property} {string.Join(", ", array)}");
You can also add a log method that accepts an array directly instead of editing all Log lines ^^
Hope you'll have time to add this really quick fix on your next update :p
Hi,
for the first time, I used
setUserProperty
with an array and I found out that yourLog
method is useless with arrays (it only prints the array type). I fixed all the array logs to display the content of the array:Log ($"C# setUserProperty {property} {string.Join(", ", array)}");
You can also add a log method that accepts an array directly instead of editing allLog
lines ^^Hope you'll have time to add this really quick fix on your next update :p
Thanks for your work by the way :)