We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddba3cb commit 2577b00Copy full SHA for 2577b00
src/com/magento/idea/magento2plugin/stubs/indexes/PluginIndex.java
@@ -98,7 +98,7 @@ private Set<PluginData> getPluginsForType(final XmlTag typeNode) {
98
final String pluginType = pluginTag.getAttributeValue(ModuleDiXml.TYPE_ATTR);
99
String pluginSortOrder = pluginTag.getAttributeValue(ModuleDiXml.SORT_ORDER_ATTR);
100
101
- if (pluginType != null) {
+ if (pluginType != null && !pluginType.isEmpty()) {
102
pluginSortOrder = pluginSortOrder == null ? "0" : pluginSortOrder;
103
final PluginData pluginData = getPluginDataObject(pluginType, Integer.parseInt(pluginSortOrder));
104
try {
0 commit comments