Fix import-export bustage caused by wrong method call; patch by Stefan Sitter, r=dmose, no bug

This commit is contained in:
dmose%mozilla.org 2007-01-10 23:41:27 +00:00
Родитель ecbeae08bb
Коммит 8e40c4c369
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -69,7 +69,7 @@ calIcsImporter.prototype.importFromStream =
function ics_importFromStream(aStream, aCount) {
var parser = Components.classes["@mozilla.org/calendar/ics-parser;1"].
createInstance(Components.interfaces.calIIcsParser);
parser.parseString(aStream);
parser.parseFromStream(aStream);
return parser.getItems(aCount);
};