mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2025-01-08 17:11:14 +00:00
fix(hetzner): Fix the resize volume request
This commit is contained in:
parent
370186030a
commit
98228cfc05
|
@ -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 =
|
||||
|
|
Loading…
Reference in a new issue