Skip to content

Commit 6b4de61

Browse files
committed
Lower string threshold.
1 parent 26f7d20 commit 6b4de61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Util/Extensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ public static bool IsPrintableData(this IEnumerable<char> source)
163163
{
164164
Contract.Requires(source != null);
165165

166-
return IsLikelyPrintableData(source) >= 0.75f;
166+
return IsLikelyPrintableData(source) >= 0.5f;
167167
}
168168

169169
public static float IsLikelyPrintableData(this IEnumerable<char> source)

0 commit comments

Comments
 (0)