diff --git a/addons/bus/static/src/js/bus.js b/addons/bus/static/src/js/bus.js index 6ca515f815e..393f101c77c 100644 --- a/addons/bus/static/src/js/bus.js +++ b/addons/bus/static/src/js/bus.js @@ -14,7 +14,7 @@ }, start_polling: function(){ if(!this.activated){ - setTimeout(this.poll(), 1); + this.poll(); this.stop = false; } }, @@ -58,4 +58,4 @@ // singleton bus.bus = new bus.Bus(); return bus; -})(); \ No newline at end of file +})();