Fix segfault in "install:cli" when app is not yet installed (cherry-pick #9427) (#9430)
gcp-cherry-pick-bot[bot]
and
Conrad Irwin
created
Cherry-picked Fix segfault in "install:cli" when app is not yet
installed (#9427)
Release Notes:
- Fixed a panic running `cli: Install` or `cli: Register Zed Scheme`
before installing the app.
Co-authored-by: Conrad Irwin <conrad.irwin@gmail.com>
@@ -548,6 +548,11 @@ impl Platform for MacPlatform {
let workspace: id = msg_send![class!(NSWorkspace), sharedWorkspace];
let scheme: id = ns_string(scheme);
let app: id = msg_send![workspace, URLForApplicationWithBundleIdentifier: bundle_id];
+ if app == nil {
+ return Task::ready(Err(anyhow!(
+ "Cannot register URL scheme until app is installed"
+ )));
+ }
let done_tx = Cell::new(Some(done_tx));
let block = ConcreteBlock::new(move |error: id| {
let result = if error == nil {