From 4cd3a2d1d8d87959f08aa0bbbadb7da4bcfcf0c0 Mon Sep 17 00:00:00 2001 From: Chrystian Huot Date: Sat, 16 May 2020 11:04:22 -0400 Subject: [PATCH] Fix backlight not firing quick enough when a call is being played --- .../src/app/components/rdio-scanner/rdio-scanner.component.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/src/app/components/rdio-scanner/rdio-scanner.component.ts b/client/src/app/components/rdio-scanner/rdio-scanner.component.ts index 2256836..88e4f8f 100644 --- a/client/src/app/components/rdio-scanner/rdio-scanner.component.ts +++ b/client/src/app/components/rdio-scanner/rdio-scanner.component.ts @@ -314,6 +314,8 @@ export class AppRdioScannerComponent implements OnDestroy, OnInit { if (event.call) { this.call = this.transformCall(event.call); + this.updateDimmer(); + } else { this.callPrevious = this.call;