Skip to content

Commit

Permalink
Fixes the SSL issues
Browse files Browse the repository at this point in the history
  • Loading branch information
N7ghtm4r3 committed Dec 7, 2023
1 parent 1d9f0be commit c15b9f5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ private String workWithProject(String id, String token, String payload, String p
if (isValidProjectShortDescription(shortDescription)) {
String version = hPayload.getString(PROJECT_VERSION_KEY);
if (isValidVersion(version)) {
ArrayList<String> groups = hPayload.fetchList(GROUPS_KEY);
ArrayList<String> groups = hPayload.fetchList(GROUPS_KEY, new ArrayList<>());
ArrayList<String> adminGroups = new ArrayList<>();
for (Group group : me.getAdminGroups())
adminGroups.add(group.getId());
Expand Down

0 comments on commit c15b9f5

Please sign in to comment.