This code:
guard let node = audioEngine.inputNode else { return }
Results in the following error:
Initializer for conditional binding must have Optional type, not 'AVAudioInputNode'
What should I change to make it work?
Tried to delete guard
but it doesn't help.