Changeset 54 for trunk/UContact.pas
- Timestamp:
- Dec 8, 2021, 2:29:29 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/UContact.pas
r53 r54 333 333 if Attributes.IndexOfName('ENCODING') <> -1 then begin 334 334 Encoding := Attributes.Values['ENCODING']; 335 if (Encoding = 'B') or (Encoding = 'b') then Encoding := 'BASE64'; 336 if (Encoding = 'Q') or (Encoding = 'q') then Encoding := 'QUOTED-PRINTABLE'; 335 337 if (Encoding = 'QUOTED-PRINTABLE') or (Encoding = 'BASE64') then begin 336 338 Value := GetDecodedValue; 337 339 Attributes.Delete(Attributes.IndexOfName('ENCODING')); 338 end ;340 end else 339 341 end else Encoding := ''; 340 342 … … 347 349 if Attributes.Names[I] = 'TYPE' then 348 350 Attributes.Strings[I] := Attributes.Values['TYPE']; 351 if Attributes.Names[I] = 'type' then 352 Attributes.Strings[I] := Attributes.Values['type']; 349 353 end; 350 354 end;
Note:
See TracChangeset
for help on using the changeset viewer.