Bug 1729664 - Paper over missing calendar item id. r=darktrojan

This commit is contained in:
Ben Bucksch 2021-09-13 11:09:53 +12:00
Родитель 4a3cf63ef4
Коммит 2392baf95c
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -2243,7 +2243,7 @@ CalStorageCalendar.prototype = {
// put Google's HTML description in the right place
//
fixGoogleCalendarDescriptionIfNeeded(item) {
if (item.id.endsWith("@google.com")) {
if (item.id && item.id.endsWith("@google.com")) {
let description = item.getProperty("DESCRIPTION");
if (description) {
let altrep = item.getPropertyParameter("DESCRIPTION", "ALTREP");