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 75092b1 commit da15ea2Copy full SHA for da15ea2
src/main/java/main/view/Project/TestRunServlet.java
@@ -45,7 +45,7 @@ public void doDelete(HttpServletRequest req, HttpServletResponse resp) {
45
try {
46
Session session = createSession(req);
47
String requestedJson = getRequestJson(req);
48
- if(requestedJson == null) {
+ if(requestedJson == null || requestedJson.isEmpty()) {
49
TestRunDto testRun = new TestRunDto();
50
testRun.getSearchTemplateFromRequestParameters(req);
51
session.controllerFactory.getHandler(testRun).delete(testRun);
0 commit comments