Skip to content

Commit

Permalink
Fix incorrect warning for Firestore websocket in UI. (#5100)
Browse files Browse the repository at this point in the history
  • Loading branch information
yuchenshi authored Oct 10, 2022
1 parent 2a5ca05 commit 75d15d5
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/emulator/downloadableEmulators.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,15 +80,15 @@ export const DownloadDetails: { [s in DownloadableEmulators]: EmulatorDownloadDe
},
}
: {
version: "1.11.0",
downloadPath: path.join(CACHE_DIR, "ui-v1.11.0.zip"),
unzipDir: path.join(CACHE_DIR, "ui-v1.11.0"),
binaryPath: path.join(CACHE_DIR, "ui-v1.11.0", "server", "server.js"),
version: "1.11.1",
downloadPath: path.join(CACHE_DIR, "ui-v1.11.1.zip"),
unzipDir: path.join(CACHE_DIR, "ui-v1.11.1"),
binaryPath: path.join(CACHE_DIR, "ui-v1.11.1", "server", "server.js"),
opts: {
cacheDir: CACHE_DIR,
remoteUrl: "https://storage.googleapis.com/firebase-preview-drop/emulator/ui-v1.11.0.zip",
expectedSize: 3061915,
expectedChecksum: "94679756dc270754e9a4dc9d1c6fc4e1",
remoteUrl: "https://storage.googleapis.com/firebase-preview-drop/emulator/ui-v1.11.1.zip",
expectedSize: 3061713,
expectedChecksum: "a4944414518be206280b495f526f18bf",
namePrefix: "ui",
},
},
Expand Down

0 comments on commit 75d15d5

Please sign in to comment.