Skip to content

Commit

Permalink
Merge pull request #227 from eurofurence/issue-226-fix-package-api
Browse files Browse the repository at this point in the history
repair package api
  • Loading branch information
Jumpy-Squirrel authored Feb 9, 2025
2 parents 3aa8abe + 652aae7 commit 847fe90
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/java/org/eurofurence/regsys/web/services/PackageApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,10 @@ protected void process() {
downstreamAuth.apiToken = getConfiguration().downstream.apiToken;
attendee = attendeeService.performGetAttendee(attendeeId, downstreamAuth, getRequestId());

if (getMethod() == HttpMethod.GET) {
return;
}

boolean updated = false;

OptionList temp = new OptionList(Option.OptionTypes.Package, getConfiguration().choices.packages, o -> true);
Expand Down

0 comments on commit 847fe90

Please sign in to comment.