Skip to content
This repository was archived by the owner on Apr 13, 2023. It is now read-only.

Commit fc720fa

Browse files
committed
Fix FFmpeg log
1 parent d44e99f commit fc720fa

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Captura.ViewCore/ViewCoreModule.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ public void OnLoad(IBinder Binder)
2929
Binder.BindSingleton<CustomImageOverlaysViewModel>();
3030
Binder.BindSingleton<CensorOverlaysViewModel>();
3131

32-
Binder.Bind<IFFmpegLogRepository, FFmpegLog>();
32+
Binder.BindSingleton<FFmpegLog>();
33+
Binder.Bind<IFFmpegLogRepository>(ServiceProvider.Get<FFmpegLog>);
3334
}
3435

3536
public void Dispose() { }

0 commit comments

Comments
 (0)