Supports JSON5 for sources

This commit is contained in:
Riley Testut
2024-01-22 14:25:09 -06:00
committed by Magesh K
parent 673eff4a51
commit 2466c4d5c9

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