mirror of
https://github.com/Pro/dkim-exchange.git
synced 2026-04-25 17:05:55 +03:00
[GH-ISSUE #92] Possible bug in btDisable.Text = (IsDkimAgentTransportInstalled ? "Disable" : "Enable") #70
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @gogglespisano on GitHub (Jul 28, 2015).
Original GitHub issue: https://github.com/Pro/dkim-exchange/issues/92
In:
private void ExchangeTransportServiceWindows_Load(object sender, EventArgs e)
{
this.RefreshTransportServiceAgents();
Should it use Is...Enabled rather than Is...Installed?
this.btDisable.Text = (IsDkimAgentTransportInstalled ? "Disable" : "Enable");
It thinks it is enable when it's disabled and then you can't enable it from the UI.
@AlexLaroche commented on GitHub (Jul 28, 2015):
8c0ed68aba@gogglespisano commented on GitHub (Aug 1, 2015):
This is now backwards. When it is enabled it should show "disable" as the choice and vice-versa.
@gogglespisano commented on GitHub (Aug 1, 2015):
Also, this code should be in RefreshTransportServiceAgents so that it updates when refreshed.