From 6ca0d4a5ef9ca81109502efa24e7e4241ae857bf Mon Sep 17 00:00:00 2001 From: Giovanni Campagna Date: Wed, 8 Feb 2012 18:59:02 +0100 Subject: [PATCH] Looking Glass: fix error line when there are no errors The No error code path still used the old metadata object. https://bugzilla.gnome.org/show_bug.cgi?id=669694 --- js/ui/lookingGlass.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/lookingGlass.js b/js/ui/lookingGlass.js index d88ead0dc..fc5029848 100644 --- a/js/ui/lookingGlass.js +++ b/js/ui/lookingGlass.js @@ -776,7 +776,7 @@ const Extensions = new Lang.Class({ errorDisplay.add(new St.Label({ text: errors[i] })); } else { /* Translators: argument is an extension UUID. */ - let message = _("%s has not emitted any errors.").format(meta.uuid); + let message = _("%s has not emitted any errors.").format(extension.uuid); errorDisplay.add(new St.Label({ text: message })); }