diff options
author | Christian Grothoff <christian@grothoff.org> | 2024-08-23 11:32:36 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2024-08-23 11:32:36 +0200 |
commit | 993fc7022d668f547c619a62c80f2506faaaa787 (patch) | |
tree | 4a9bb0cf2c16317d5fd0d3ef675ce591a8fcc793 /src/auditor/taler-auditor-httpd_spa.c | |
parent | 779fbde1053ba0ed1b4f894869018095413dae47 (diff) |
fix spa serving
Diffstat (limited to 'src/auditor/taler-auditor-httpd_spa.c')
-rw-r--r-- | src/auditor/taler-auditor-httpd_spa.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/auditor/taler-auditor-httpd_spa.c b/src/auditor/taler-auditor-httpd_spa.c index fa9a5a540..3fed76550 100644 --- a/src/auditor/taler-auditor-httpd_spa.c +++ b/src/auditor/taler-auditor-httpd_spa.c @@ -41,8 +41,10 @@ TAH_spa_handler ( size_t *upload_data_size, const char *const args[]) { - const char *path = args[0]; + const char *path = args[1]; + GNUNET_assert (0 == strcmp (args[0], + "spa")); if (NULL == path) path = "index.html"; return TALER_MHD_spa_handler (spa, |