about summary refs log tree commit diff
path: root/patches/expo-updates+0.26.10.patch
diff options
context:
space:
mode:
authorEric Bailey <git@esb.lol>2025-04-07 20:29:41 -0500
committerGitHub <noreply@github.com>2025-04-07 18:29:41 -0700
commit872fcd1d20e2e3981eca77190b3eaa380b9aca76 (patch)
treec88c383a256699cbc4c775eb1735937e70273f2c /patches/expo-updates+0.26.10.patch
parentd496b5bdbff64b02baf00654c3a82bfe7153bf77 (diff)
downloadvoidsky-872fcd1d20e2e3981eca77190b3eaa380b9aca76.tar.zst
Update patches (#8151)
* Update patches after #8133

* Bump deps

* Revert @react-native-picker/picker downgrade

* Migrate RN patch
Diffstat (limited to 'patches/expo-updates+0.26.10.patch')
-rw-r--r--patches/expo-updates+0.26.10.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/patches/expo-updates+0.26.10.patch b/patches/expo-updates+0.26.10.patch
deleted file mode 100644
index 6fc4fc5fc..000000000
--- a/patches/expo-updates+0.26.10.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-diff --git a/node_modules/expo-updates/ios/EXUpdates/Update/ExpoUpdatesUpdate.swift b/node_modules/expo-updates/ios/EXUpdates/Update/ExpoUpdatesUpdate.swift
-index b85291e..546709d 100644
---- a/node_modules/expo-updates/ios/EXUpdates/Update/ExpoUpdatesUpdate.swift
-+++ b/node_modules/expo-updates/ios/EXUpdates/Update/ExpoUpdatesUpdate.swift
-@@ -78,13 +78,20 @@ public final class ExpoUpdatesUpdate: Update {
-       status = UpdateStatus.StatusPending
-     }
- 
-+    // Instead of relying on various hacks to get the correct format for the specific
-+    // platform on the backend, we can just add this little patch..
-+    let dateFormatter = DateFormatter()
-+    dateFormatter.locale = Locale(identifier: "en_US_POSIX")
-+    dateFormatter.dateFormat = "yyyy-MM-dd'T'HH:mm:ssZ"
-+    let date = dateFormatter.date(from:commitTime) ?? RCTConvert.nsDate(commitTime)!
-+
-     return Update(
-       manifest: manifest,
-       config: config,
-       database: database,
-       updateId: uuid,
-       scopeKey: config.scopeKey,
--      commitTime: RCTConvert.nsDate(commitTime),
-+      commitTime: date,
-       runtimeVersion: runtimeVersion,
-       keep: true,
-       status: status,