diff --git a/MVMCore/MVMCore/Models/Model/ModelRegistry.swift b/MVMCore/MVMCore/Models/Model/ModelRegistry.swift index df09507..75866fe 100644 --- a/MVMCore/MVMCore/Models/Model/ModelRegistry.swift +++ b/MVMCore/MVMCore/Models/Model/ModelRegistry.swift @@ -49,7 +49,7 @@ extension KeyedDecodingContainer where Key: CodingKey { var meta: KeyedDecodingContainer? do { meta = try self.nestedContainer(keyedBy: C.self, forKey: codingKey) - }git catch { + } catch { return nil } guard let type = try meta?.decodeIfPresent(String.self, forKey: typeCodingKey) else {