fix velocloud entreprise id to integer

This commit is contained in:
garnier-quentin 2020-12-18 14:40:10 +01:00
parent f9014addf7
commit 0a1746c959
1 changed files with 1 additions and 1 deletions

View File

@ -281,7 +281,7 @@ sub get_entreprise_id {
endpoint => '/enterprise/getEnterprise'
);
$self->{entreprise_id} = $response->{id};
$self->{entreprise_id} = int($response->{id});
}
sub list_edges {