Skip to content

Commit

Permalink
add v3.7.2-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
ericwang401 committed Mar 1, 2023
1 parent d869146 commit 79c9d0c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ This file is a running track of new features and fixes to each version of the pa

This project follows [Semantic Versioning](http://semver.org) guidelines.

## v3.7.2-beta

### Fixed

- Error unmounting media (or ISOs) in the server control panel in the client area

## v3.7.1-beta

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion app/Services/Servers/AllocationService.php
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ public function unmountIso(Server $server, ISO $iso)
{
$disks = $this->getDisks($server);
if ($disk = $disks->where('media_name', '=', $iso->name)->first()) {
$this->repository->update(['delete' => $disk->name]);
$this->repository->update(['delete' => $disk->interface]);
} else {
throw new IsoAlreadyUnmountedException();
}
Expand Down

0 comments on commit 79c9d0c

Please sign in to comment.