tangled
alpha
login
or
join now
jollywhoppers.com
/
witchsky.app
100
fork
atom
Bluesky app fork with some witchin' additions 💫
witchsky.app
bluesky
fork
client
100
fork
atom
overview
issues
43
pulls
pipelines
Merge remote-tracking branch 'upstream/main'
xan.lol
4 months ago
a0d9484d
3f893b5f
verified
This commit was signed with the committer's
known signature
.
xan.lol
SSH Key Fingerprint:
SHA256:7Zs+dcly5YqxBg7v8XsE1uPMYCobHKBw7CDiNxpmSrY=
+22
-1
1 changed file
expand all
collapse all
unified
split
patches
expo-updates+29.0.12.patch
+22
-1
patches/expo-updates+29.0.12.patch
···
1
1
+
diff --git a/node_modules/expo-updates/android/src/main/java/expo/modules/updates/loader/LoaderTask.kt b/node_modules/expo-updates/android/src/main/java/expo/modules/updates/loader/LoaderTask.kt
2
2
+
index e9a8e3d..3c684e0 100644
3
3
+
--- a/node_modules/expo-updates/android/src/main/java/expo/modules/updates/loader/LoaderTask.kt
4
4
+
+++ b/node_modules/expo-updates/android/src/main/java/expo/modules/updates/loader/LoaderTask.kt
5
5
+
@@ -296,14 +296,13 @@ class LoaderTask(
6
6
+
) {
7
7
+
try {
8
8
+
val embeddedLoader = EmbeddedLoader(context, configuration, logger, database, directory)
9
9
+
- val result = embeddedLoader.load { updateResponse ->
10
10
+
+ embeddedLoader.load { _ ->
11
11
+
Loader.OnUpdateResponseLoadedResult(shouldDownloadManifestIfPresentInResponse = true)
12
12
+
}
13
13
+
- launcher.launch(database)
14
14
+
} catch (e: Exception) {
15
15
+
logger.error("Unexpected error copying embedded update", e, UpdatesErrorCode.Unknown)
16
16
+
- launcher.launch(database)
17
17
+
}
18
18
+
+ launcher.launch(database)
19
19
+
} else {
20
20
+
launcher.launch(database)
21
21
+
}
1
22
diff --git a/node_modules/expo-updates/ios/EXUpdates/Update/ExpoUpdatesUpdate.swift b/node_modules/expo-updates/ios/EXUpdates/Update/ExpoUpdatesUpdate.swift
2
2
-
index b85291e..546709d 100644
23
23
+
index 68086bd..78c7761 100644
3
24
--- a/node_modules/expo-updates/ios/EXUpdates/Update/ExpoUpdatesUpdate.swift
4
25
+++ b/node_modules/expo-updates/ios/EXUpdates/Update/ExpoUpdatesUpdate.swift
5
26
@@ -78,13 +78,20 @@ public final class ExpoUpdatesUpdate: Update {