* Plugins:

- Fix plugin start button
      - Change signer prop to match docs
      - Tweaks
This commit is contained in:
zzz
2010-02-17 18:12:46 +00:00
parent b6704fce4e
commit 7701693d37
4 changed files with 47 additions and 24 deletions

View File

@@ -301,9 +301,9 @@ public class PluginStarter implements Runnable {
for (String name : names) {
Properties props = pluginProperties(ctx, name);
String pubkey = props.getProperty("key");
String keyName = props.getProperty("keyName");
if (pubkey != null && keyName != null && pubkey.length() == 172 && keyName.length() > 0)
rv.put(pubkey, keyName);
String signer = props.getProperty("signer");
if (pubkey != null && signer != null && pubkey.length() == 172 && signer.length() > 0)
rv.put(pubkey, signer);
}
return rv;
}