@opendaw/studio-core 0.0.128 → 0.0.130
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/capture/CaptureAudio.js +1 -1
- package/dist/processors.js +10 -10
- package/dist/processors.js.map +3 -3
- package/dist/ysync/YSync.d.ts +1 -0
- package/dist/ysync/YSync.d.ts.map +1 -1
- package/dist/ysync/YSync.js +29 -3
- package/package.json +5 -5
|
@@ -77,7 +77,7 @@ export class CaptureAudio extends Capture {
|
|
|
77
77
|
const { project } = this.manager;
|
|
78
78
|
const { env: { audioContext, audioWorklets, sampleManager, sampleService } } = project;
|
|
79
79
|
if (isUndefined(audioContext.outputLatency)) {
|
|
80
|
-
const approved = RuntimeNotifier.approve({
|
|
80
|
+
const approved = await RuntimeNotifier.approve({
|
|
81
81
|
headline: "Warning",
|
|
82
82
|
message: "Your browser does not support 'output latency'. This will cause timing issue while recording.",
|
|
83
83
|
approveText: "Ignore",
|