@3dsource/angular-unreal-module 0.0.66 → 0.0.67

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -317,6 +317,7 @@ class AFKService extends SubService {
317
317
  }
318
318
  hideOverlay() {
319
319
  sendSignal(UnrealInternalSignalEvents.ClickableOverlay);
320
+ this.store.dispatch(setAfkTimerHide());
320
321
  }
321
322
  /**
322
323
  * Start a timer which when elapsed will warn the user they are inactive.
@@ -382,7 +383,6 @@ class AFKService extends SubService {
382
383
  if (this.countdown === 0) {
383
384
  // The user failed to click so disconnect them
384
385
  this.hideOverlay();
385
- this.store.dispatch(setAfkTimerHide());
386
386
  this.store.dispatch(disconnectStream({
387
387
  reason: DisconnectReason.Afk,
388
388
  message: `AFK timeout:${this.selectWarnTimeout()} seconds, popup timeout:${this.closeTimeout} seconds`,