Skip to content

Commit

Permalink
Add default value for encoding (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
andyedinborough committed Apr 9, 2012
1 parent a049cf5 commit 71c4440
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Utilities.cs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ internal static string DecodeBase64(string data, Encoding encoding = null) {
}

#region OpenPOP.NET
internal static string DecodeWords(string encodedWords, Encoding @default) {
internal static string DecodeWords(string encodedWords, Encoding @default = null) {
if (string.IsNullOrEmpty(encodedWords))
return string.Empty;

Expand Down

0 comments on commit 71c4440

Please sign in to comment.