Skip to content

Commit

Permalink
Issue #417
Browse files Browse the repository at this point in the history
Corretto problema nella get del logo specificando l'header Accept: application/octet-stream
  • Loading branch information
pintorig committed Oct 28, 2021
1 parent ea9dc7a commit 48564f4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ public Response getEntrata(@Context UriInfo uriInfo, @Context HttpHeaders httpHe

@GET
@Path("/{idDominio}/logo")
@Produces({ "application/json" })
@Produces({ "application/json" , "application/octet-stream"})
public Response getLogo(@Context UriInfo uriInfo, @Context HttpHeaders httpHeaders, @PathParam("idDominio") String idDominio){
this.buildContext();
return this.controller.getLogo(this.getUser(), uriInfo, httpHeaders, idDominio);
Expand Down

0 comments on commit 48564f4

Please sign in to comment.