Skip to content

Commit f2d09a7

Browse files
committed
Hopefully fix permission error with modrinth submissions
1 parent dc6fc0e commit f2d09a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

platform_api/src/main/java/net/modfest/platform/service/SubmissionService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ public Stream<UserData> getUsersForRinthProject(String modrinthProjectId) {
8686
return Stream.concat(
8787
members.stream(),
8888
(organization == null ? List.<TeamMember>of() : organization.members).stream()
89-
).map(mrData -> userService.getByMfId(mrData.user.id))
89+
).map(mrData -> userService.getByModrinthId(mrData.user.id))
9090
.filter(Objects::nonNull);
9191
}
9292

0 commit comments

Comments
 (0)