Bug 884760 - Typo in OfflineCacheInstaller.jsm. r=me

This commit is contained in:
Fernando Jiménez 2013-06-19 13:13:45 +02:00
Родитель 34c6401702
Коммит 5aa45bedd2
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -78,7 +78,7 @@ function storeCache(applicationCache, url, file, itemType) {
function readFile(aFile, aCallback) {
let channel = NetUtil.newChannel(aFile);
channel.contentType = "pain/text";
channel.contentType = "plain/text";
NetUtil.asyncFetch(channel, function(aStream, aResult) {
if (!Components.isSuccessCode(aResult)) {
Cu.reportError("OfflineCacheInstaller: Could not read file " + aFile.path);