Xcode 12 broke multiline guard indentation in swift?
With one line guard Xcode 12 make right indentation: guard let contentName = vod.name else { Log.fault("No data.") return } but with multiline, the indentation is broken: guard let contentName = vod.name, let season = vod.season else { Log.fault("No data.")…