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.")
return
}
Am I doing something wrong or there are someone with the same problem?