Merge pull request #1289 from cmgustavo/bug/02-localstorage

Fixes reading configuration from local storage
This commit is contained in:
Matias Alejo Garcia 2014-09-05 15:06:37 -03:00
commit 281b41d972
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ if (localConfig) {
if (key === 'networkName' && config['forceNetwork']) { if (key === 'networkName' && config['forceNetwork']) {
return; return;
} }
config[name] = value; config[key] = value;
}); });
} }
} }