"on.stopRecording" is called several times #3012
Answered
by
katspaugh
visualight
asked this question in
Q&A
-
Hello, When I record a voice message the first time, everything goes smoothly. However, when I record a second and then a third message, the function: Is there an event or a method to authorize the call only once per message sent? Here's my code:
Thank you |
Beta Was this translation helpful? Give feedback.
Answered by
katspaugh
Jul 12, 2023
Replies: 1 comment 1 reply
-
That makes sense though, doesn’t it? You’re subscribing to that event as many times as you call the stop method. Changing |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
visualight
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
That makes sense though, doesn’t it? You’re subscribing to that event as many times as you call the stop method. Changing
on
toonce
should do it.