Skip to content

Commit

Permalink
fix a small bug, bump
Browse files Browse the repository at this point in the history
  • Loading branch information
breakwa11 committed Jun 24, 2017
1 parent 1aff490 commit 0f3cd87
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion shadowsocks-csharp/Controller/UpdateChecker.cs
Expand Up @@ -21,7 +21,7 @@ public class UpdateChecker

public const string Name = "ShadowsocksR";
public const string Copyright = "Copyright © BreakWa11 2017. Fork from Shadowsocks by clowwindy";
public const string Version = "4.5.4";
public const string Version = "4.5.5";
#if !_DOTNET_4_0
public const string NetVer = "2.0";
#elif !_CONSOLE
Expand Down
2 changes: 1 addition & 1 deletion shadowsocks-csharp/View/SubscribeForm.cs
Expand Up @@ -80,7 +80,7 @@ private void buttonCancel_Click(object sender, EventArgs e)

private void buttonOK_Click(object sender, EventArgs e)
{
int select_index = _modifiedConfiguration.serverSubscribes.Count;
int select_index = listServerSubscribe.SelectedIndex;
SaveSelected(select_index);
if (SaveAllSettings() == -1)
{
Expand Down

0 comments on commit 0f3cd87

Please sign in to comment.