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 4d661cd commit 9d5c2cbCopy full SHA for 9d5c2cb
src/com/qbb/interaction/UploadToYapi.java
@@ -62,7 +62,7 @@ public void actionPerformed(AnActionEvent e) {
62
PsiFile psiFile = (PsiFile) e.getDataContext().getData(CommonDataKeys.PSI_FILE);
63
String virtualFile = psiFile.getVirtualFile().getPath();
64
for (int i = 0; i < moduleList.length; i++) {
65
- if (virtualFile.equals(moduleList[i])) {
+ if (virtualFile.contains(moduleList[i])) {
66
projectToken = projectConfig.split(moduleList[i] + "\\.projectToken\">")[1].split("</")[0];
67
projectId = projectConfig.split(moduleList[i] + "\\.projectId\">")[1].split("</")[0];
68
yapiUrl = projectConfig.split(moduleList[i] + "\\.yapiUrl\">")[1].split("</")[0];
0 commit comments