diff --git a/back/src/org/kar/karideo/api/HealthCheck.java b/back/src/org/kar/karideo/api/HealthCheck.java index 864b457..c428496 100644 --- a/back/src/org/kar/karideo/api/HealthCheck.java +++ b/back/src/org/kar/karideo/api/HealthCheck.java @@ -20,7 +20,7 @@ public class HealthCheck { @GET @PermitAll public Response getHealth() { - if (JWTWrapper.getPublicKey() == null) { + if (JWTWrapper.getPublicKeyJson() == null) { return Response.status(500).entity(new HealthResult("Missing Jwt public token")).build(); } return Response.status(200).entity(new HealthResult("alive and kicking")).build(); diff --git a/front/src/app/scene/video-edit/video-edit.ts b/front/src/app/scene/video-edit/video-edit.ts index fc9834a..aec88f8 100644 --- a/front/src/app/scene/video-edit/video-edit.ts +++ b/front/src/app/scene/video-edit/video-edit.ts @@ -109,7 +109,6 @@ export class VideoEditScene implements OnInit { { value: undefined, label: '---' }, ]; constructor( - private route: ActivatedRoute, private typeService: TypeService, private seriesService: SeriesService, private videoService: VideoService,