Skip to content

Commit 3acae92

Browse files
authored
Merge pull request #2443 from Flow-Launcher/minor-fix
minor fix jsonrpc errorstream and expect.txt
2 parents 2c39cf7 + 1bd16cc commit 3acae92

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

.github/actions/spelling/expect.txt

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
crowdin
22
DWM
33
workflows
4-
Wpf
54
wpf
65
actionkeyword
76
stackoverflow
@@ -20,9 +19,7 @@ Prioritise
2019
Segoe
2120
Google
2221
Customise
23-
UWP
2422
uwp
25-
Uwp
2623
Bokmal
2724
Bokm
2825
uninstallation
@@ -61,7 +58,6 @@ popup
6158
ptr
6259
pluginindicator
6360
TobiasSekan
64-
Img
6561
img
6662
resx
6763
bak
@@ -78,7 +74,6 @@ WCA_ACCENT_POLICY
7874
HGlobal
7975
dopusrt
8076
firefox
81-
Firefox
8277
msedge
8378
svgc
8479
ime
@@ -87,7 +82,6 @@ txb
8782
btn
8883
otf
8984
searchplugin
90-
Noresult
9185
wpftk
9286
mkv
9387
flac

Flow.Launcher.Core/Plugin/ProcessStreamPluginV2.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ internal abstract class ProcessStreamPluginV2 : JsonRPCPluginV2
1717

1818
protected abstract ProcessStartInfo StartInfo { get; set; }
1919

20-
public Process ClientProcess { get; set; }
20+
protected Process ClientProcess { get; set; }
2121

2222
public override async Task InitAsync(PluginInitContext context)
2323
{
@@ -33,6 +33,8 @@ public override async Task InitAsync(PluginInitContext context)
3333

3434
SetupPipe(ClientProcess);
3535

36+
ErrorStream = ClientProcess.StandardError;
37+
3638
await base.InitAsync(context);
3739
}
3840

0 commit comments

Comments
 (0)