Make the XUL directory viewer work with jar: directories b=309296 r+sr=jag

This commit is contained in:
neil%parkwaycc.co.uk 2006-03-30 21:06:48 +00:00
Родитель a83505cb84
Коммит 01a74f1cbe
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -434,7 +434,7 @@ nsHTTPIndex::OnIndexAvailable(nsIRequest* aRequest, nsISupports *aContext,
PRBool isDirType = (type == nsIDirIndex::TYPE_DIRECTORY);
if (isDirType) {
if (isDirType && entryuriC.Last() != '/') {
entryuriC.Append('/');
}
@ -470,6 +470,8 @@ nsHTTPIndex::OnIndexAvailable(nsIRequest* aRequest, nsISupports *aContext,
// description
rv = aIndex->GetDescription(getter_Copies(xpstr));
if (NS_FAILED(rv)) return rv;
if (xpstr.Last() == '/')
xpstr.Truncate(xpstr.Length() - 1);
rv = mDirRDF->GetLiteral(xpstr.get(), getter_AddRefs(lit));
if (NS_FAILED(rv)) return rv;