Skip to content

Commit

Permalink
Fixed bug where setting recordLocation sets to mode
Browse files Browse the repository at this point in the history
  • Loading branch information
Garethp committed Jul 16, 2015
1 parent 68009d0 commit 2008e06
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Changelog

## 0.3.0 - 2015-07-*
## 0.3.1 - 2015-07-16
* Fixed bug where setting recordLocation sets to mode

## 0.3.0 - 2015-07-16
* Added Changelog
* Added `deleteItems($items, $options = array())` and `deleteCalendarItem($itemId, $changeKey)`
* Added `deleteAllCalendarItems($from = '12:00 AM', $to = '11:59 PM');`
Expand Down
2 changes: 1 addition & 1 deletion src/HttpPlayback/HttpPlayback.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function setPlaybackOptions($options = [])
}

if ($options['recordLocation'] !== null) {
self::$mode = $options['recordLocation'];
self::$recordLocation = $options['recordLocation'];
}
}

Expand Down

0 comments on commit 2008e06

Please sign in to comment.