Handle webhook chunks

@BulldogLowell

I’m using a response template to only send the data I want back and it works just fine except for the data point that gets cut in half and split up into two separate webhook responses.

Here is the response template that I’m using. Is this correct?

"responseTemplate": "

{{#forecast}}

<Date>{{forecast.txt_forecast.date}}</Date>

<Icon0>{{forecast.txt_forecast.forecastday.0.icon}}</Icon0>

<Day>{{forecast.txt_forecast.forecastday.0.title}}</Day>

<Forecast>{{forecast.txt_forecast.forecastday.0.fcttext}}</Forecast>


<Icon1>{{forecast.txt_forecast.forecastday.1.icon}}</Icon1>

<Day1>{{forecast.txt_forecast.forecastday.1.title}}</Day1>

<Forecast1>{{forecast.txt_forecast.forecastday.1.fcttext}}</Forecast1>



<Icon2>{{forecast.txt_forecast.forecastday.2.icon}}</Icon2>

<Day2>{{forecast.txt_forecast.forecastday.2.title}}</Day2>

<Forecast2>{{forecast.txt_forecast.forecastday.2.fcttext}}</Forecast2>



<Icon3>{{forecast.txt_forecast.forecastday.3.icon}}</Icon3>

<Day3>{{forecast.txt_forecast.forecastday.3.title}}</Day3>

<Forecast3>{{forecast.txt_forecast.forecastday.3.fcttext}}</Forecast3>



{{/forecast}}",

You can see that the Day is missing from the last group of weather data text because that is where the webhook was split and the remaining text is sent via the 2nd webhook response.

You can see the split here after Day3:

And that ends with /Day3