Bug 484063 - safeb request format wrong for tables with no existing data. r=tony

This commit is contained in:
Dave Camp 2009-04-07 10:51:46 +02:00
Родитель 2e69946f94
Коммит a500fa9a32
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -446,7 +446,7 @@ PROT_ListManager.prototype.makeUpdateRequest_ = function(tableData) {
// For each requested table that didn't have chunk data in the database,
// request it fresh
for (var tableName in tableNames) {
request += tableName + ";:mac\n";
request += tableName + ";mac\n";
}
G_Debug(this, 'checkForUpdates: scheduling request..');