Skip to content

Commit ae5b1df

Browse files
committed
Fixed wrong year in date format
1 parent c2ca4d7 commit ae5b1df

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

PACore/Source/PlayAlways.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public struct PlayAlways {
3232
var dateString: String {
3333
let date = Date()
3434
let dateFormat = DateFormatter()
35-
dateFormat.dateFormat = "YMMdd_HHmmss"
35+
dateFormat.dateFormat = "yMMdd_HHmmss"
3636
return dateFormat.string(from: date)
3737
}
3838

0 commit comments

Comments
 (0)