Skip to content

Commit

Permalink
Fix null problem.
Browse files Browse the repository at this point in the history
  • Loading branch information
CTMBNara committed Feb 19, 2024
1 parent bafbb92 commit a7f0ed1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ DebugResolver debugResolver(@Value("${debug.override-token:#{null}}") String deb

@Bean
SecBrowsingTopicsResolver secBrowsingTopicsResolver(
@Value("${auction.privacysandbox.topicsdomain:#{null}") String topicsDomain) {
@Value("${auction.privacysandbox.topicsdomain:#{null}}") String topicsDomain) {

return new SecBrowsingTopicsResolver(topicsDomain);
}
Expand Down

0 comments on commit a7f0ed1

Please sign in to comment.