Merge branch 'next' into new-database-38
[Sone.git] / src / main / java / net / pterodactylus / sone / main / SonePlugin.java
index 42e2fe1..1bc8b5a 100644 (file)
@@ -86,7 +86,7 @@ public class SonePlugin implements FredPlugin, FredPluginFCP, FredPluginL10n, Fr
        }
 
        /** The version. */
-       public static final Version VERSION = new Version(0, 8, 2);
+       public static final Version VERSION = new Version(0, 8, 4);
 
        /** The logger. */
        private static final Logger logger = Logging.getLogger(SonePlugin.class);
@@ -188,8 +188,7 @@ public class SonePlugin implements FredPlugin, FredPluginFCP, FredPluginL10n, Fr
                        /* create web of trust connector. */
                        PluginConnector pluginConnector = new PluginConnector(pluginRespirator);
                        webOfTrustConnector = new WebOfTrustConnector(pluginConnector);
-                       identityManager = new IdentityManager(webOfTrustConnector);
-                       identityManager.setContext("Sone");
+                       identityManager = new IdentityManager(webOfTrustConnector, "Sone");
 
                        /* create Sone database. */
                        Database soneDatabase = new MemoryDatabase();