Skip to content

Commit

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

[SNAPI-12918] remove quotes from filename 1x
  • Loading branch information
dhalkin authored Oct 11, 2022
2 parents 0dd52b5 + 3d9a972 commit a400202
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 a400202

Please sign in to comment.