Skip to content

Commit d83fe4d

Browse files
committed
fix(fontservice): update parameter usage to avoid compile issues
1 parent 3c77ac2 commit d83fe4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/net/onelitefeather/vulpes/backend/service/impl/FontServiceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public Optional<FontEntity> findFontById(UUID id) {
7474

7575
@Override
7676
public List<String> findCharsByFontId(UUID id) {
77-
return fontRepository.findCharsByFontId(id);
77+
return fontRepository.findCharsByFontId(id, Pageable.UNPAGED);
7878
}
7979

8080
@Override

0 commit comments

Comments
 (0)