diff options
author | Francois Kritzinger <francois@codesynthesis.com> | 2024-03-20 12:48:12 +0200 |
---|---|---|
committer | Francois Kritzinger <francois@codesynthesis.com> | 2024-10-15 09:05:27 +0200 |
commit | b4403afe42dde4f3e9a19f8ccc8a3542b8186842 (patch) | |
tree | 5a279f2d3f302c85f386bd912b5d8642244dadf5 /mod/mod-ci-github.hxx | |
parent | 4fa5ee0814b1220510819254fca1292cd769db2a (diff) |
Fix id/node_id confusion
Diffstat (limited to 'mod/mod-ci-github.hxx')
-rw-r--r-- | mod/mod-ci-github.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mod/mod-ci-github.hxx b/mod/mod-ci-github.hxx index 713eb4b..2a4921d 100644 --- a/mod/mod-ci-github.hxx +++ b/mod/mod-ci-github.hxx @@ -49,7 +49,6 @@ namespace brep // struct check_suite { - uint64_t id; // Note: used for installation access token (REST API). string node_id; string head_branch; string head_sha; @@ -90,7 +89,7 @@ namespace brep struct installation { - uint64_t id; + uint64_t id; // Note: used for installation access token (REST API). explicit installation (json::parser&); |