We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed53736 commit 5a80adcCopy full SHA for 5a80adc
Flow.Launcher.Core/Plugin/JsonRPCPluginV2.cs
@@ -133,10 +133,16 @@ private void SetupJsonRPC()
133
RPC.StartListening();
134
}
135
136
- public virtual Task ReloadDataAsync()
+ public virtual async Task ReloadDataAsync()
137
{
138
SetupJsonRPC();
139
- return Task.CompletedTask;
+ try
140
+ {
141
+ await RPC.InvokeAsync("reload", context);
142
+ }
143
+ catch (RemoteMethodNotFoundException e)
144
145
146
147
148
public virtual async ValueTask DisposeAsync()
0 commit comments