Bluesky app fork with some witchin' additions 💫

Revert unneeded changes to `expo-modules-core` patch (#5393)

authored by hailey.at and committed by

GitHub f45f7148 8d560de4

-25
-25
patches/expo-modules-core+1.12.11.patch
··· 12 12 13 13 Map<String, Object> constants = new HashMap<>(3); 14 14 constants.put(MODULES_CONSTANTS_KEY, new HashMap<>()); 15 - diff --git a/node_modules/expo-modules-core/build/uuid/uuid.js b/node_modules/expo-modules-core/build/uuid/uuid.js 16 - index 109d3fe..c421931 100644 17 - --- a/node_modules/expo-modules-core/build/uuid/uuid.js 18 - +++ b/node_modules/expo-modules-core/build/uuid/uuid.js 19 - @@ -1,5 +1,7 @@ 20 - import bytesToUuid from './lib/bytesToUuid'; 21 - import { Uuidv5Namespace } from './uuid.types'; 22 - +import { ensureNativeModulesAreInstalled } from '../ensureNativeModulesAreInstalled'; 23 - +ensureNativeModulesAreInstalled(); 24 - const nativeUuidv4 = globalThis?.expo?.uuidv4; 25 - const nativeUuidv5 = globalThis?.expo?.uuidv5; 26 - function uuidv4() { 27 - diff --git a/node_modules/expo-modules-core/ios/Core/SharedObjects/SharedObjectRegistry.swift b/node_modules/expo-modules-core/ios/Core/SharedObjects/SharedObjectRegistry.swift 28 - index ee2268a..4851b67 100644 29 - --- a/node_modules/expo-modules-core/ios/Core/SharedObjects/SharedObjectRegistry.swift 30 - +++ b/node_modules/expo-modules-core/ios/Core/SharedObjects/SharedObjectRegistry.swift 31 - @@ -173,7 +173,7 @@ public final class SharedObjectRegistry { 32 - } 33 - 34 - internal func clear() { 35 - - Self.lockQueue.async { 36 - + Self.lockQueue.sync { 37 - self.pairs.removeAll() 38 - } 39 - }