Skip to content
Snippets Groups Projects
Commit 357fb3b1 authored by David Bühler's avatar David Bühler
Browse files

[ivette] Server: uses [clearInterval] instead of [clearTimeout] to stop polling.

parent 7e63db25
No related branches found
No related tags found
No related merge requests found
...@@ -508,7 +508,7 @@ function _startPolling(): void { ...@@ -508,7 +508,7 @@ function _startPolling(): void {
function _stopPolling(): void { function _stopPolling(): void {
if (pollingTimer) { if (pollingTimer) {
clearTimeout(pollingTimer); clearInterval(pollingTimer);
pollingTimer = undefined; pollingTimer = undefined;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment