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.
2 parents a970b55 + 70f2e62 commit fd28f5eCopy full SHA for fd28f5e
src/main/java/ch/ethz/seb/sps/server/weblayer/SEBSessionController.java
@@ -289,6 +289,10 @@ public CompletableFuture<Void> postScreenshot(
289
Constants.MAX_METADATA_SIZE,
290
100);
291
292
+ //remove all backslashes
293
+ trimmedMetadata = trimmedMetadata.replace("\\/", "");
294
+
295
296
// TODO inject session cache and get session by sessionUUID and check if it is still active (not terminated)
297
// if inactive throw error for SEB client to notify session closed
298
0 commit comments