Skip to content

Commit

Permalink
GH-3327 reverting change of time zone handling (#3383)
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitryBespalov authored Jan 10, 2024
1 parent 110a695 commit 2348e79
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Multisig/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>3.25.0</string>
<string>3.25.1</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ class HistoryTransactionsViewController: TransactionListViewController {
timeFormatter = {
let d = DateFormatter()
d.locale = .autoupdatingCurrent
// time offset is 0 here because server returns adjusted dates in the specified client's time zone
d.timeZone = TimeZone(secondsFromGMT: 0)
d.dateStyle = .none
d.timeStyle = .short
return d
Expand All @@ -26,8 +24,6 @@ class HistoryTransactionsViewController: TransactionListViewController {
dateFormatter = {
let d = DateFormatter()
d.locale = .autoupdatingCurrent
// time offset is 0 here because server returns adjusted dates in the specified client's time zone
d.timeZone = TimeZone(secondsFromGMT: 0)
d.dateStyle = .medium
d.timeStyle = .none
return d
Expand Down
2 changes: 1 addition & 1 deletion MultisigIntegrationTests/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>3.25.0</string>
<string>3.25.1</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
Expand Down
2 changes: 1 addition & 1 deletion MultisigTests/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>3.25.0</string>
<string>3.25.1</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
Expand Down
2 changes: 1 addition & 1 deletion NotificationServiceExtension/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>3.25.0</string>
<string>3.25.1</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>NSExtension</key>
Expand Down

0 comments on commit 2348e79

Please sign in to comment.