Skip to content

Commit

Permalink
Merge pull request #12 from JoshHrach/master
Browse files Browse the repository at this point in the history
Fixed date format
  • Loading branch information
insidegui authored Jan 28, 2021
2 parents 116e7e6 + ae5b1df commit 2fe0e0e
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 2fe0e0e

Please sign in to comment.