notificationDaemon.js: Fix a typo (missing ')')

Introduced in e0a992af73 it was preventing gnome-shell from starting.

https://gitlab.gnome.org/GNOME/gnome-shell/issues/915
This commit is contained in:
Daniel van Vugt 2019-01-17 11:55:04 +08:00
parent e0a992af73
commit 4b28b90e0f

View File

@ -78,7 +78,7 @@ var FdoNotificationDaemon = new Lang.Class({
return Shell.util_create_pixbuf_from_data(data, GdkPixbuf.Colorspace.RGB, hasAlpha,
bitsPerSample, width, height, rowStride);
} else if (hints['image-path']) {
return this._iconForNotificationData(hints['image-path'];
return this._iconForNotificationData(hints['image-path']);
}
return null;
},