This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 243874
Collapse All | Expand All

(-)a/extbrowser.chrome/src/org/netbeans/modules/extbrowser/plugins/chrome/ChromeManagerAccessor.java (-2 / +2 lines)
Lines 172-179 Link Here
172
                JSONObject extension = (JSONObject)e.getValue();
172
                JSONObject extension = (JSONObject)e.getValue();
173
                if (extension != null) {
173
                if (extension != null) {
174
                    String path = (String)extension.get("path");
174
                    String path = (String)extension.get("path");
175
                    if (path != null && (path.indexOf("/extbrowser/plugins/chrome") != -1
175
                    if (path != null && (path.contains("/extbrowser.chrome/plugins/chrome")
176
                            || path.indexOf("\\extbrowser\\plugins\\chrome") != -1))
176
                            || path.contains("\\extbrowser.chrome\\plugins\\chrome")))
177
                    {
177
                    {
178
                        return ExtensionManager.ExtensitionStatus.INSTALLED;
178
                        return ExtensionManager.ExtensitionStatus.INSTALLED;
179
                    }
179
                    }

Return to bug 243874