From 703825d397a6abdc469aca2faa9bfed0088a1eed Mon Sep 17 00:00:00 2001 From: Joel Collins Date: Thu, 14 May 2020 17:22:31 +0100 Subject: [PATCH] Changed follow-up request to after 250ms --- src/components/viewComponents/streamDisplay.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/viewComponents/streamDisplay.vue b/src/components/viewComponents/streamDisplay.vue index 367e4afa..350f751a 100644 --- a/src/components/viewComponents/streamDisplay.vue +++ b/src/components/viewComponents/streamDisplay.vue @@ -197,7 +197,7 @@ export default { 2. The requests leapfrog eachother, stopping the preview, in which case the follow-up request restarts the preview in the correct location. */ - setTimeout(() => this.previewRequest(true), 1000); + setTimeout(() => this.previewRequest(true), 250); } } },