Skip to content
Snippets Groups Projects
Commit 8d056b11 authored by Tobias Ullerich's avatar Tobias Ullerich
Browse files

Set end of file property in native audio mac

parent 617200f3
No related branches found
No related tags found
No related merge requests found
...@@ -24,6 +24,7 @@ public class AVAudioPlayerBridgeDelegate implements AVAudioPlayerBridge.NativeAu ...@@ -24,6 +24,7 @@ public class AVAudioPlayerBridgeDelegate implements AVAudioPlayerBridge.NativeAu
nativeAudioMacHandler.ifPresent(handler -> { nativeAudioMacHandler.ifPresent(handler -> {
PadContent content = handler.getContent(); PadContent content = handler.getContent();
if (content != null) { if (content != null) {
content.getPad().setEof(true);
content.getPad().setStatus(PadStatus.STOP); content.getPad().setStatus(PadStatus.STOP);
} }
}); });
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment