Bug 1825740 - Make PushServiceWebSocket cancel the request timeout timer when receiving a pong, r=lina.

Differential Revision: https://phabricator.services.mozilla.com/D174234
This commit is contained in:
Florian Quèze 2023-03-31 15:08:37 +00:00
Родитель ce1dd3f87b
Коммит 98a276c715
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -1163,6 +1163,9 @@ export var PushServiceWebSocket = {
// If it is a ping, do not handle the message.
if (doNotHandle) {
if (!this._hasPendingRequests()) {
this._requestTimeoutTimer.cancel();
}
return;
}