Skip to content

Commit 45b028f

Browse files
authored
Merge pull request #796 from woocommerce/fix/ship-tracking-date
Fixed DateFormatter dateFormat string typo.
2 parents d04ff97 + bb556f6 commit 45b028f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Networking/Networking/Extensions/DateFormatter+Woo.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public extension DateFormatter {
2626
public static let yearMonthDayDateFormatter: DateFormatter = {
2727
let formatter = DateFormatter()
2828
formatter.locale = Locale(identifier: "en_US_POSIX")
29-
formatter.dateFormat = "yyyy'-'MM'-'DD'"
29+
formatter.dateFormat = "yyyy'-'MM'-'dd"
3030
return formatter
3131
}()
3232

RELEASE-NOTES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
- improvement: Filtering by custom order status now supported!
1111
- new feature: You can now manually change the status of an order on the order details screen
1212
- bugfix: correctly flips chevron on Dashboard > New Orders, to support RTL languages.
13+
- bugfix: fixed an issue on the order details screen where the shipment tracking dates were incorrect
1314

1415
1.3
1516
-----

0 commit comments

Comments
 (0)