Skip to content
This repository has been archived by the owner on Nov 5, 2022. It is now read-only.

Commit

Permalink
Bug Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
markushaug authored Feb 8, 2018
1 parent dfbfb28 commit 10804a1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Thing/Sonos.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ public function play()
$this->thing->Play();
// set status for frontend
$this->setStatus('ON');

}

public function pause()
Expand Down Expand Up @@ -86,6 +87,7 @@ public function onSuccess()
public function next()
{
$this->thing->Next();

}

/**
Expand All @@ -94,11 +96,13 @@ public function next()
public function previous()
{
$this->thing->Previous();

}

public function setVolume()
{
$this->thing->SetVolume($this->getInput());

}

public function getVolume()
Expand Down

0 comments on commit 10804a1

Please sign in to comment.