remoteSearch: fix scope of a variable

'title' is used in the catch() block.
This commit is contained in:
Stefano Facchini 2012-03-13 18:46:06 +01:00
parent 252eb24522
commit 2fad9d73d4

View File

@ -59,13 +59,13 @@ function loadRemoteSearchProvidersFromDir(dir, addProviderCallback) {
if (!keyfile.has_group(KEY_FILE_GROUP))
continue;
let remoteProvider;
let remoteProvider, title;
try {
let group = KEY_FILE_GROUP;
let title = keyfile.get_locale_string(group, 'Title', null);
let icon = keyfile.get_string(group, 'Icon');
let busName = keyfile.get_string(group, 'BusName');
let objectPath = keyfile.get_string(group, 'ObjectPath');
title = keyfile.get_locale_string(group, 'Title', null);
remoteProvider = new RemoteSearchProvider(title,
icon,