From 8fe62574693dffd2304051daa405a46024782f65 Mon Sep 17 00:00:00 2001 From: Jacob deGroot-Maggetti <58090591+jacobdgm@users.noreply.github.com> Date: Tue, 19 Sep 2023 15:47:50 +0000 Subject: [PATCH] Chant Detail: fix bug where we would send a request to a cantusindex.org/json-con/cantus_id/refresh --- django/cantusdb_project/main_app/views/chant.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/cantusdb_project/main_app/views/chant.py b/django/cantusdb_project/main_app/views/chant.py index 9dd1b164a..e0c06cf7e 100644 --- a/django/cantusdb_project/main_app/views/chant.py +++ b/django/cantusdb_project/main_app/views/chant.py @@ -155,7 +155,7 @@ def touch_ci_json_con_api(cantus_id: str) -> None: """ t = threading.Thread( target=_refresh_ci_json_con_api, - args={"cantus_id": f"{cantus_id}"}, + args=[cantus_id], ) t.start()