Skip to content

Commit

Permalink
Merge pull request #32 from tomek-r/bugfix/remove-callback-handler
Browse files Browse the repository at this point in the history
Fixed hbTimer callback attachment
  • Loading branch information
asllop authored Aug 3, 2021
2 parents 104c336 + 395d129 commit e17fbb4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# CHANGELOG
All notable changes to this project will be documented in this file.

## [1.3.4] - 2021/08/02
### Fix
- Fix hbTimer callback attachment

## [1.3.3] - 2021/06/18
### Fix
- Fix NewRelicVideoStop function - remove license status observer.
Expand Down
2 changes: 1 addition & 1 deletion components/NewRelicAgent/NRAgent.brs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ function NewRelicVideoStart(videoObject as Object) as Void

'Init heartbeat timer
m.hbTimer = m.top.findNode("nrHeartbeatTimer")
m.hbTimer.ObserveField("fire", "nrHeartbeatHandler")
m.hbTimer.observeFieldScoped("fire", "nrHeartbeatHandler")
m.hbTimer.control = "start"

'Player Ready
Expand Down
2 changes: 1 addition & 1 deletion components/NewRelicAgent/NRAgent.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<interface>
<!-- Properties -->
<field id="version" type="string" value="1.3.3"/>
<field id="version" type="string" value="1.3.4"/>
<!-- Public Methods (wrapped) -->
<function name="NewRelicInit"/>
<function name="NewRelicVideoStart"/>
Expand Down

0 comments on commit e17fbb4

Please sign in to comment.