Skip to content

Commit 16224ad

Browse files
committed
Fix: Run Operation does not work.
1 parent a866336 commit 16224ad

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Retriever/FormMain.cs

+1-2
Original file line numberDiff line numberDiff line change
@@ -183,8 +183,7 @@ private void ShowRunDialog()
183183
{
184184
if (form.Operation == null)
185185
{
186-
SetStatus(new ApplicationException("No opeation selected"));
187-
return;
186+
throw new ApplicationException("No opeation selected");
188187
}
189188
if (this.creds == null)
190189
{

Retriever/FormRun.Designer.cs

+4-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Retriever/Retriever.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<ProductName>AWSRetriever</ProductName>
3131
<PublisherName>AWSRetriever</PublisherName>
3232
<OpenBrowserOnPublish>false</OpenBrowserOnPublish>
33-
<ApplicationRevision>8</ApplicationRevision>
33+
<ApplicationRevision>9</ApplicationRevision>
3434
<ApplicationVersion>0.1.0.%2a</ApplicationVersion>
3535
<UseApplicationTrust>false</UseApplicationTrust>
3636
<CreateDesktopShortcut>true</CreateDesktopShortcut>

0 commit comments

Comments
 (0)