diff --git a/modules/renderer/hooks/Video.ts b/modules/renderer/hooks/Video.ts index 86908ff..2317ed9 100644 --- a/modules/renderer/hooks/Video.ts +++ b/modules/renderer/hooks/Video.ts @@ -57,8 +57,6 @@ class NativeVideoDriver extends WebVideoDriver { } const name = this.currentScreenCaptureDevices.find(e => e.id === id)?.name || tr("Screen device"); - const source = new WebVideoSource(id, name, result); - await source.applyDefaultResolution(); - return source; + return new WebVideoSource(id, name, result); } } \ No newline at end of file