Skip to content

Commit

Permalink
Merge pull request #63 from yusufbktmr/master
Browse files Browse the repository at this point in the history
fix stream target update service url
  • Loading branch information
akeller authored Jun 9, 2020
2 parents 1b4d54a + e911db3 commit 62efdcf
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 62efdcf

Please sign in to comment.