Skip to content

Commit

Permalink
require Latin1 -- #54
Browse files Browse the repository at this point in the history
  • Loading branch information
andyedinborough committed Apr 9, 2012
1 parent 956ec06 commit 804a9f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TextClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public abstract class TextClient : IDisposable {
public System.Text.Encoding Encoding { get; set; }

public TextClient() {
Encoding = System.Text.Encoding.Default;
Encoding = System.Text.Encoding.GetEncoding(1252);
}

internal abstract void OnLogin(string username, string password);
Expand Down

1 comment on commit 804a9f6

@537mfb
Copy link

@537mfb 537mfb commented on 804a9f6 Apr 17, 2012

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this fixes the character set problem in issue #62

Please sign in to comment.