Compare against ObjC NO to ensure correctness.

This commit is contained in:
Nolan Darilek 2021-03-15 13:02:32 -05:00
parent 00485d6cd8
commit bd8e2ee20a
1 changed files with 1 additions and 1 deletions

View File

@ -198,7 +198,7 @@ impl Backend for AppKit {
fn is_speaking(&self) -> Result<bool, Error> {
let is_speaking: i8 = unsafe { msg_send![self.0, isSpeaking] };
Ok(is_speaking == YES as i8)
Ok(is_speaking != NO as i8)
}
}