diff --git a/src/FileSignatures/Formats/Vcard.cs b/src/FileSignatures/Formats/Vcard.cs index d06f3ad..98d0347 100644 --- a/src/FileSignatures/Formats/Vcard.cs +++ b/src/FileSignatures/Formats/Vcard.cs @@ -5,7 +5,8 @@ /// public class Vcard : FileFormat { - public Vcard() : base(new byte[] { 0x42, 0x45, 0x47, 0x49, 0x4E, 0x3A, 0x56, 0x43, 0x41, 0x52, 0x44, 0x0D, 0x0A }, "text/vcard", "vcf") + // 0x0D, 0x0A (\r\n) combinations are omitted because the text writer can use any line ending style + public Vcard() : base(new byte[] { 0x42, 0x45, 0x47, 0x49, 0x4E, 0x3A, 0x56, 0x43, 0x41, 0x52, 0x44 }, "text/vcard", "vcf") { } }