Bug 1005093 - Fix return code path of getNotificationURLFor(). r=fabrice

This commit is contained in:
Alexandre Lissy 2014-05-02 11:22:00 +02:00
Родитель 9dff27145b
Коммит cbd575daea
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -178,8 +178,8 @@ let AlertsHelper = {
return helper.fullLaunchPath();
} else if (typeof message === "object" &&
kNotificationSystemMessageName in message) {
return
helper.resolveFromOrigin(message[kNotificationSystemMessageName]);
return helper.resolveFromOrigin(
message[kNotificationSystemMessageName]);
}
}