Skip to content

Commit 22ab3e1

Browse files
committed
fix: launcher with empty session
1 parent b9a5d59 commit 22ab3e1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/aind_ephys_portal/ephys_launcher_app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def _build_gui_url(self):
7676

7777
analyzer_path_q = urllib.parse.quote(analyzer_path, safe="")
7878
recording_path_q = urllib.parse.quote(recording_path, safe="") if recording_path else ""
79-
path = EPHYSGUI_LINK_PREFIX.format(analyzer_path_q, recording_path_q)
79+
path = EPHYSGUI_LINK_PREFIX.format(analyzer_path_q, recording_path_q, "") # use empty session for now
8080
if self.fast_mode_checkbox.value:
8181
path += "&fast_mode=true"
8282
if self.preload_curation.value:

0 commit comments

Comments
 (0)