Skip to content

Commit

Permalink
Made Facebook App ID optional
Browse files Browse the repository at this point in the history
  • Loading branch information
musketyr committed Apr 17, 2024
1 parent c98a49d commit d4f0ef7
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@

import jakarta.validation.constraints.Min;
import jakarta.validation.constraints.NotBlank;
import jakarta.validation.constraints.NotNull;

import java.util.ArrayList;
import java.util.List;
Expand All @@ -31,7 +30,7 @@ public abstract class AbstractFacebookApplicationConfiguration {
@NotBlank
private String secret;

@NotNull @Min(1)
@Min(1)
private Long id;

private String version = Version.LATEST.getUrlElement();
Expand Down

0 comments on commit d4f0ef7

Please sign in to comment.