From 4e547635d84af3b1961b08bd2e6040c2b60684a6 Mon Sep 17 00:00:00 2001 From: faraphel Date: Sun, 22 Dec 2024 23:41:40 +0100 Subject: [PATCH] fixed starting node api call --- source/gns3/GnsNode.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/gns3/GnsNode.cpp b/source/gns3/GnsNode.cpp index e78fd5b..58f8f8d 100644 --- a/source/gns3/GnsNode.cpp +++ b/source/gns3/GnsNode.cpp @@ -16,7 +16,7 @@ GnsNode::GnsNode(const GnsProject *project, std::string uuid, const std::vector< } std::string GnsNode::getApiBase() const { - return this->project->getApiBase() + "nodes/" + this->uuid; + return this->project->getApiBase() + "nodes/" + this->uuid + "/"; } std::string GnsNode::getUuid() const {