Skip to content

Commit 43c4a25

Browse files
committed
1 parent 9e1787a commit 43c4a25

File tree

5 files changed

+845
-821
lines changed

5 files changed

+845
-821
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [3.3.3] - 2022-02-02
11+
12+
### Changed
13+
14+
- Fixed broken actions due to command arguments.
15+
1016
## [3.3.2] - 2022-01-29
1117

1218
### Added

StreamDeckVS/ExecuteCommandKey.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ private int GetVisualStudioPIDFromPipeLink(string link)
7676

7777
private bool IsLinkedByPipe(string arguments) => arguments.Contains(@"\\.\pipe\Microsoft-VisualStudio-Debug-Console-");
7878

79-
private void ExecuteCommand(DTE dte, ExecuteCommandSettings settings) => dte?.ExecuteCommand(settings.Command, settings.CommandArgs);
79+
private void ExecuteCommand(DTE dte, ExecuteCommandSettings settings) => dte?.ExecuteCommand(settings.Command, settings.CommandArgs ?? "");
8080

8181
private bool IsProcessVisualStudio(int processId)
8282
{

0 commit comments

Comments
 (0)