From 71c444076771039a02baa1921e0b40bf7f4d46c7 Mon Sep 17 00:00:00 2001 From: Andy Edinborough Date: Mon, 9 Apr 2012 08:53:04 -0500 Subject: [PATCH] Add default value for encoding (#54) --- Utilities.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Utilities.cs b/Utilities.cs index 1bb1ce7..a52e368 100644 --- a/Utilities.cs +++ b/Utilities.cs @@ -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;