GSM playback cut off

Ok, I tried searching but I get a million unrelated threads or none at all. So, if this has been discussed sorry for bring it up again, I tried.

Given this:

exten => 1XXXXXXXXXX,n,Playback(hello-world)

I would expect that the server would answer and say ‘hello world’. However is just says ‘world’. After adding this:

exten => 1XXXXXXXXXX,1,Wait,3

I expected I would hear the whole thing, but now I hear even less…

Any clues?

Try
Answer()
Wait(3)
Playback(helloworld)

Much better, thank you!