Skip to content

Commit

Permalink
Fixed wrong year in date format
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshHrach committed Jan 28, 2021
1 parent c2ca4d7 commit ae5b1df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PACore/Source/PlayAlways.swift
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public struct PlayAlways {
var dateString: String {
let date = Date()
let dateFormat = DateFormatter()
dateFormat.dateFormat = "YMMdd_HHmmss"
dateFormat.dateFormat = "yMMdd_HHmmss"
return dateFormat.string(from: date)
}

Expand Down

0 comments on commit ae5b1df

Please sign in to comment.