diff options
author | h6w <tudor@tudorholton.com> | 2020-07-02 08:56:08 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-02 08:56:08 +1000 |
commit | d3676e92ee80c108dd54d6e193edbc0a74976145 (patch) | |
tree | 991687d298e44667fe437d2be89927cd29dd4061 | |
parent | 1430c530886d2e14cf3ebc678c6db85bfaae767e (diff) | |
parent | bca2bf1b5d810d72ba6b2fa579a150901ae9e462 (diff) | |
download | phpvirtualbox-d3676e92ee80c108dd54d6e193edbc0a74976145.zip phpvirtualbox-d3676e92ee80c108dd54d6e193edbc0a74976145.tar.gz phpvirtualbox-d3676e92ee80c108dd54d6e193edbc0a74976145.tar.bz2 |
Merge pull request #242 from stianvis/fix_usb_device_filter_add
Fix adding USB device filter from device
-rw-r--r-- | endpoints/lib/vboxconnector.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/endpoints/lib/vboxconnector.php b/endpoints/lib/vboxconnector.php index cfa6cc5..96e532d 100644 --- a/endpoints/lib/vboxconnector.php +++ b/endpoints/lib/vboxconnector.php @@ -3497,10 +3497,12 @@ class vboxconnector { 'serialNumber' => $d->serialNumber, 'address' => $d->address, 'port' => $d->port, + 'portPath' => $d->portPath, 'version' => $d->version, - 'portVersion' => $d->portVersion, + 'speed' => $d->speed, 'remote' => $d->remote, - 'state' => (string)$d->state, + 'deviceInfo' => $d->deviceInfo, + 'backend' => $d->backend, ); $d->releaseRemote(); } |