Also log incomplete base64 data for notification requests

This commit is contained in:
Kovid Goyal 2024-09-15 08:45:48 +05:30
parent 481153318b
commit 5a77ea64d0
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C

View file

@ -197,6 +197,8 @@ class EncodedDataStore:
self.data_store(decoded)
def flush_encoded_data(self) -> None:
if self.decoder.needs_more_data():
log_error('Received incomplete encoded data for notification request')
self.decoder.reset()
def finalise(self) -> bytes: