We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 904af3d commit 5fab234Copy full SHA for 5fab234
Sources/AWSLambdaEvents/Utils/DateWrappers.swift
@@ -195,7 +195,8 @@ struct RFC5322DateStrategy {
195
guard let first = first,
196
let second = second,
197
let third = third,
198
- let fourth = fourth else { return nil }
+ let fourth = fourth
199
+ else { return nil }
200
return Int(first - UInt8(ascii: "0")) * 1000
201
+ Int(second - UInt8(ascii: "0")) * 100
202
+ Int(third - UInt8(ascii: "0")) * 10
0 commit comments