0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-15 00:58:22 +02:00

don't hammer after 403

This commit is contained in:
Matthew Hodgson 2014-08-13 17:39:08 +01:00
parent b80b32d1c0
commit f729f13735

View file

@ -69,11 +69,14 @@ angular.module('RoomController', [])
}
}, function(response) {
$scope.feedback = "Can't stream: " + JSON.stringify(response);
if (response.status == 403) {
$scope.stopPoll = true;
}
if ($scope.stopPoll) {
console.log("Stopping polling.");
}
else {
$timeout(shortPoll, 2000);
$timeout(shortPoll, 5000);
}
});
};