Bug 134814 - Collapsing messages will collapse too much

fix previous patch
p=gijskruitbosch@gmail.com
r=silver@warwickcompsoc.co.uk
chatzilla only
This commit is contained in:
samuel%sieb.net 2005-10-24 22:03:02 +00:00
Родитель a229a38203
Коммит 576a35fdd4
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -3852,7 +3852,9 @@ function addHistory (source, obj, mergeData)
// Does the motif collapse everything, regardless of type?
// NOTE: the collapseActions pref can override this for actions
needSameType = !("collapsemore" in source.motifSettings);
needSameType = !(("motifSettings" in source) &&
source.motifSettings &&
("collapsemore" in source.motifSettings));
}
if (sameNick && sameDest && (haveSameType || !needSameType) &&