diff --git a/js/misc/fileUtils.js b/js/misc/fileUtils.js index 1abe64c2e..e672f68bd 100644 --- a/js/misc/fileUtils.js +++ b/js/misc/fileUtils.js @@ -76,19 +76,15 @@ function loadInterfaceXML(iface) { _ifaceResource._register(); } - let xml = null; let uri = `resource:///org/gnome/shell/dbus-interfaces/${iface}.xml`; let f = Gio.File.new_for_uri(uri); try { let [ok_, bytes] = f.load_contents(null); - if (bytes instanceof Uint8Array) - xml = imports.byteArray.toString(bytes); - else - xml = bytes.toString(); + return imports.byteArray.toString(bytes); } catch (e) { log(`Failed to load D-Bus interface ${iface}`); } - return xml; + return null; }