1
0
Fork 0
mirror of https://codeberg.org/Mo8it/git-webhook-client synced 2024-10-18 07:22:39 +00:00

Correct returned path

This commit is contained in:
Mo 2022-10-13 22:24:02 +02:00
parent 18e6a837f3
commit 6f1b94e4f7

View file

@ -72,5 +72,5 @@ pub fn trigger(
let new_hook_log_id = db::add_hook_log(&db_state.pool, hook, &output); let new_hook_log_id = db::add_hook_log(&db_state.pool, hook, &output);
format!("{}/{}", config_state.base_url, new_hook_log_id) format!("{}/?id={}", config_state.base_url, new_hook_log_id)
} }