Supports JSON5 for sources

This commit is contained in:
Riley Testut
2024-01-22 14:25:09 -06:00
committed by Magesh K
parent f3b250edf4
commit 4ca4e7c235

View File

@@ -122,6 +122,11 @@ final class FetchSourceOperation: ResultOperation<Source>
decoder.managedObjectContext = childContext
decoder.sourceURL = self.sourceURL
if #available(iOS 15, *)
{
decoder.allowsJSON5 = true
}
let source: Source
do