Browse Source

identities done live in the licenses folder.

Change-Id: If83e228ed5d30dea17a9c4ef01e10ef741e44cfd
Reviewed-on: http://gerrit.dmdirc.com/4030
Reviewed-by: Chris Smith <chris@dmdirc.com>
Automatic-Compile: DMDirc Build Manager
pull/1/head
Greg Holmes 9 years ago
parent
commit
39d3ca092e
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/com/dmdirc/plugins/PluginInfo.java

+ 1
- 1
src/com/dmdirc/plugins/PluginInfo.java View File

@@ -319,7 +319,7 @@ public class PluginInfo implements Comparable<PluginInfo>, ServiceProvider {
319 319
         try {
320 320
             final Map<String, InputStream> identityStreams = new HashMap<>();
321 321
             try (DirectoryStream<Path> directoryStream = Files.newDirectoryStream(
322
-                    pluginFilesystem.getPath("/META-INF/licenses/"))) {
322
+                    pluginFilesystem.getPath("/META-INF/identities/"))) {
323 323
                 for (Path path : directoryStream) {
324 324
                     identityStreams.put(path.getFileName().toString(), Files.newInputStream(path));
325 325
                 }

Loading…
Cancel
Save