Skip to content

Commit

Permalink
fix stream target update service url
Browse files Browse the repository at this point in the history
  • Loading branch information
bektemiryusuf committed Jun 9, 2020
1 parent 1b4d54a commit e911db3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/StreamTarget.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public function update(
$streamName = null,
$application = null
) {
$this->restURI = $this->restURI . "/" . $entryName;
$this->restURI = $this->getRestURI() . "/" . $entryName;
$this->sourceStreamName = (!is_null($sourceStreamName)) ? $sourceStreamName : $this->sourceStreamName;
$this->entryName = (!is_null($entryName)) ? $entryName : $this->entryName;
$this->profile = (!is_null($profile)) ? $profile : $this->profile;
Expand Down

0 comments on commit e911db3

Please sign in to comment.