Skip to content

Commit

Permalink
Fixes #155
Browse files Browse the repository at this point in the history
  • Loading branch information
ryannewington committed Dec 19, 2018
1 parent b26cf73 commit fa9e5b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Lithnet.Miiserver.AutoSync/Config/RegistrySettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public static int NetTcpBindPort
{
get
{
return (int)RegistrySettings.ParametersKey.GetValue(nameof(NetTcpBindPort), 54338);
return (int)RegistrySettings.ParametersKey.GetValue(nameof(NetTcpBindPort), 41338);
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/Lithnet.Miiserver.Autosync.UI/UserSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public static int AutoSyncServerPort
{
get
{
return (int)UserSettings.UserSettingsKey.GetValue(nameof(AutoSyncServerPort), 54338);
return (int)UserSettings.UserSettingsKey.GetValue(nameof(AutoSyncServerPort), 41338);
}
}

Expand Down

0 comments on commit fa9e5b5

Please sign in to comment.