Skip to content

Commit 38c9641

Browse files
committed
fix jsonrpcv2 plugin setting not sent
1 parent 2882d18 commit 38c9641

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Flow.Launcher.Core/Plugin/JsonRPCPluginV2.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public override async Task<List<Result>> QueryAsync(Query query, CancellationTok
4949
try
5050
{
5151
var res = await RPC.InvokeWithCancellationAsync<JsonRPCQueryResponseModel>("query",
52-
new[] { query },
52+
new object[] { query, Settings.Inner },
5353
token);
5454

5555
var results = ParseResults(res);

0 commit comments

Comments
 (0)