Bug 536457 - Include the version when pinging

Append a v=<version> to include the version and make it easier to add things in the future.
This commit is contained in:
Edward Lee 2009-12-22 13:46:34 -08:00
Родитель 2b876799fc
Коммит d16577a5ea
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1104,7 +1104,7 @@ WeaveSvc.prototype = {
let now = Math.floor(Date.now() / 1000);
let lastPing = Svc.Prefs.get("lastPing", 0);
if (now - lastPing > 86400) { // 60 * 60 * 24
infoURL += "?";
infoURL += "?v=" + WEAVE_VERSION;
Svc.Prefs.set("lastPing", now);
}