Skip to content

Commit

Permalink
fix get sessionId from fileName (#5288)
Browse files Browse the repository at this point in the history
Signed-off-by: olivier lamy <oliver.lamy@gmail.com>
  • Loading branch information
olamy committed Sep 17, 2020
1 parent 75677b8 commit eaf07dd
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -115,7 +115,7 @@ public void assertSessionExists(String sessionId, boolean exists)
int i = name.lastIndexOf('_');
if (i < 0)
continue;
String id = name.substring(i);
String id = name.substring(i + 1);
if (id.equals(sessionId))
{
found = true;
Expand Down

0 comments on commit eaf07dd

Please sign in to comment.