Say command changed

I have been using the say command with a String item for some time.
yesterday I updated I realized that the say needs the conversion to string again.

old statement

	sendCommand(Speech_out, "Hallo Hallo")
	say(Speech_out.state,"voicerss:deDE","enhancedjavasound")

was working. Now I need to convert to String Type by

	sendCommand(Speech_out, "Hallo Hallo")
	say(""+Speech_out.state,"voicerss:deDE","enhancedjavasound")

How about

Speech_out.state.toString()

? :slight_smile:

Sure this will work as well.
But the conversion from a Item String to String Type was already part of this “add-on”. So it seemed somewhat downgraded which should not happen.

There was no change on the concerned files since 2 months.
Are you sure you did not change something else ?
I will update to last snapshot this weekend and see if my say command in rules is still working.