Skip to content

Commit

Permalink
Fixed running the browser refresh task
Browse files Browse the repository at this point in the history
  • Loading branch information
YorVeX committed Apr 24, 2023
1 parent 0b72565 commit 123bb75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BrowserFilter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public static unsafe void RefreshBrowserSource(Context* context)
if ((browserSource == null) || !Convert.ToBoolean(Obs.obs_source_active(browserSource)))
return;

new Task(() =>
Task.Run(() =>
{
var sourceProperties = Obs.obs_source_properties(browserSource);
fixed (byte* refreshButtonId = "refreshnocache"u8)
Expand Down

0 comments on commit 123bb75

Please sign in to comment.