diff options
-rw-r--r-- | endpoints/lib/vboxconnector.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/endpoints/lib/vboxconnector.php b/endpoints/lib/vboxconnector.php index c9f38df..9691cfc 100644 --- a/endpoints/lib/vboxconnector.php +++ b/endpoints/lib/vboxconnector.php @@ -428,11 +428,11 @@ class vboxconnector { // Machine powered off or client has stale MO reference
if($listener)
- try { $listener->releaseRemote(); } catch (Exceptoin $e) {
+ try { $listener->releaseRemote(); } catch (Exception $e) {
/// pass
}
if($source)
- try { $source->releaseRemote(); } catch (Exceptoin $e) {
+ try { $source->releaseRemote(); } catch (Exception $e) {
// pass
}
|