Skip to content

Commit

Permalink
Merge pull request #3314 from jeanp413/fix-undefined-soundService
Browse files Browse the repository at this point in the history
Fixes undefined soundService
  • Loading branch information
Tyriar committed May 4, 2021
2 parents 4a7bbe6 + 58527bb commit e5c9b0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/browser/Terminal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1149,7 +1149,7 @@ export class Terminal extends CoreTerminal implements ITerminal {
*/
public bell(): void {
if (this._soundBell()) {
this._soundService!.playBellSound();
this._soundService?.playBellSound();
}

this._onBell.fire();
Expand Down

0 comments on commit e5c9b0e

Please sign in to comment.