Skip to content

Commit

Permalink
Dont update for null publicAccess
Browse files Browse the repository at this point in the history
  • Loading branch information
harjain99 committed Jul 9, 2024
1 parent a7b85f4 commit 661a948
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ public void create(GyroUI ui, State state) throws URISyntaxException, InvalidKey

if (Boolean.TRUE.equals(getBlobPublicAccess())) {
update = update.enableBlobPublicAccess();
} else {
} else if (Boolean.FALSE.equals(getBlobPublicAccess())) {
update = update.disableBlobPublicAccess();
}

Expand Down

0 comments on commit 661a948

Please sign in to comment.