Fix NewChannelFromURI() call due to addition of new parameter.

This commit is contained in:
rjc%netscape.com 1999-08-31 00:33:40 +00:00
Родитель 9ac99603cf
Коммит 6249d79620
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -131,7 +131,7 @@ function ReadDirectory(url)
var uri = ios.NewURI(url, null);
// Create a channel...
var channel = ios.NewChannelFromURI('load', uri, null);
var channel = ios.NewChannelFromURI('load', uri, null, null);
// ...so that we can pipe it into a new HTTPIndex listener to
// parse the directory's contents.

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

@ -131,7 +131,7 @@ function ReadDirectory(url)
var uri = ios.NewURI(url, null);
// Create a channel...
var channel = ios.NewChannelFromURI('load', uri, null);
var channel = ios.NewChannelFromURI('load', uri, null, null);
// ...so that we can pipe it into a new HTTPIndex listener to
// parse the directory's contents.