Skip to content

Commit

Permalink
Change wording of AutoDiscover button
Browse files Browse the repository at this point in the history
The word 'connect' here is technically incorrect as AutoDiscover doesn't maintain a persistent connection, but this concept should be much easier for end users to understand.
  • Loading branch information
jvyden authored Nov 10, 2024
1 parent 7e6571a commit 07b3079
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Refresher.Core/Pipelines/PipelineController.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Refresher.Core.Verification.AutoDiscover;
using Refresher.Core.Verification.AutoDiscover;

namespace Refresher.Core.Pipelines;

Expand Down Expand Up @@ -106,7 +106,7 @@ public void AutoDiscoverButtonClick(string url, Action<AutoDiscoverResponse> onS

if (autoDiscover != null)
{
this._autoDiscoverButtonText = $"AutoDiscover [locked to {autoDiscover.ServerBrand}]";
this._autoDiscoverButtonText = $"AutoDiscover [Connected to {autoDiscover.ServerBrand}]";
this._uiThread.Invoke(() => onSuccess.Invoke(autoDiscover));
}
}
Expand Down

0 comments on commit 07b3079

Please sign in to comment.