André Sousa
André Sousa
Maybe this can help: https://www.postgresql.org/message-id/10562.1552413439%40sss.pgh.pa.us
Thank you @jakob . The build 8060 is working fine with the temporary fix.
I can confirm this. I was trying to play the generated .wav file using [just_audio](https://pub.dev/packages/just_audio) plugin, and it just breaks. The debug console shows the following error: `com.google.android.exoplayer2.ParserException: Expected block...
Hi, @dignaristeve. Could you share your solution?
Thank you for the help! You can help to resolve this issue with a pull request. By the way, I switched to [record_mp3](https://pub.dev/packages/record_mp3) and it is working for my needs.
This worked for me: https://github.com/actions/checkout/issues/116#issuecomment-644419389
Of course @AlexandreBonneau , I will try to explain. In the provided link you can see some examples in "Show Time!" section. In maskmoney you can provide input even if...
@gtabasa1012 check if you are including jQuery twice. It needs to be included only once
> However it does mean our use case is resolved: > >  @markst Awesome example! I'm trying to do a similar use case. Would you mind to share...
Currently I'm using this approach on my projects: ``` // Handles beforeSubmit event (after all validations have passed) jQuery('form.prevent-double-submit').on('beforeSubmit', function(event){ if(jQuery(this).data('submitting')) { event.preventDefault(); return false; } jQuery(this).data('submitting', true); return true;...