Skip to content

Commit

Permalink
fix: correctly show errors when launching devices (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
okwasniewski authored Oct 30, 2023
1 parent d70ecc9 commit 3995aef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MiniSim/Service/DeviceService.swift
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ class DeviceService: DeviceServiceProtocol {
}
}
catch {
guard error.localizedDescription.contains(deviceBootedError) else {
if error.localizedDescription.contains(deviceBootedError) {
return
}
completionQueue.async {
Expand Down

0 comments on commit 3995aef

Please sign in to comment.