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

Commit

Permalink
Fix FFmpeg log
Browse files Browse the repository at this point in the history
  • Loading branch information
MathewSachin committed Mar 25, 2019
1 parent d44e99f commit fc720fa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Captura.ViewCore/ViewCoreModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ public void OnLoad(IBinder Binder)
Binder.BindSingleton<CustomImageOverlaysViewModel>();
Binder.BindSingleton<CensorOverlaysViewModel>();

Binder.Bind<IFFmpegLogRepository, FFmpegLog>();
Binder.BindSingleton<FFmpegLog>();
Binder.Bind<IFFmpegLogRepository>(ServiceProvider.Get<FFmpegLog>);
}

public void Dispose() { }
Expand Down

0 comments on commit fc720fa

Please sign in to comment.