219220221222223224225226227228229
Long id = getLong(idStr); WebSession ws = WebSession.get(); if (id != null && ws.isSignedIn()) { return getRecording(id); } else { ws.invalidate(); if (ws.signIn(idStr.toString())) { return getRecording(getRecordingId()); } } return null;