Skip to content

Commit

Permalink
Merge pull request #14 from signnow/snapi-12918-remove-quotes-from-fi…
Browse files Browse the repository at this point in the history
…lename

[SNAPI-12918] remove quotes from filename
  • Loading branch information
dhalkin authored Oct 11, 2022
2 parents 3789942 + 2e27e7f commit 8029fbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Service/Serializer/Type/File.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@ public function getContent(): string
*/
public function getFilename(): string
{
return $this->filename;
return str_replace('"', '', $this->filename);
}
}

0 comments on commit 8029fbf

Please sign in to comment.