I'm handling a cbor message that is tagged with a value that's not supported and so trying to decode the message throws this error:
|
throw DecodingError.dataCorruptedError(in: self, debugDescription: "Handling tags (other than epoch-based date/time) is not supported yet") |
What's the easiest way for me to patch this so that it defaults to handling as if it was a bytestring?
I'm handling a cbor message that is tagged with a value that's not supported and so trying to decode the message throws this error:
SwiftCBOR/Sources/Decoder/UnkeyedDecodingContainer.swift
Line 228 in edc0176
What's the easiest way for me to patch this so that it defaults to handling as if it was a bytestring?