Skip to content

Commit

Permalink
Merge pull request #1551 from ConductionNL/feature/BEL-10/docx
Browse files Browse the repository at this point in the history
fix acceptType
  • Loading branch information
smisidjan authored Sep 14, 2023
2 parents 839571e + 5bee5c0 commit de7d0a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/src/Controller/ZZController.php
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ private function getAcceptType(Request $request): string
return 'xml';
case 'text/html':
return 'html';
case 'text/docx':
case 'application/vnd.openxmlformats-officedocument.wordprocessingml.document':
return 'docx';
}//end switch

Expand Down

0 comments on commit de7d0a9

Please sign in to comment.