We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e59d9f5 commit 863e5acCopy full SHA for 863e5ac
vobject/vcard.py
@@ -130,6 +130,8 @@ def decode(cls, line):
130
line.singletonparams.remove('BASE64')
131
line.encoding_param = cls.base64string
132
encoding = getattr(line, 'encoding_param', None)
133
+ if encoding == 'BASE64':
134
+ line.encoding_param = cls.base64string
135
if encoding:
136
if isinstance(line.value, bytes):
137
line.value = codecs.decode(line.value, "base64")
0 commit comments