fix(hetzner): Fix the resize volume request

pull/456/head
Inex Code 2024-02-07 13:39:41 +03:00
parent 370186030a
commit 98228cfc05
1 changed files with 1 additions and 1 deletions

View File

@ -547,7 +547,7 @@ class HetznerApi extends RestApiMap {
resizeVolumeResponse = await client.post(
'/volumes/${volume.id}/actions/resize',
data: {
'size': size.gibibyte,
'size': size.gibibyte.floor(),
},
);
success =