We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ee2314 commit c1e9f7fCopy full SHA for c1e9f7f
src/main/java/net/onelitefeather/vulpes/api/repository/font/FontStringRepository.java
@@ -25,8 +25,8 @@ public interface FontStringRepository extends PageableRepository<FontStringEntit
25
* @param id the unique identifier of the font
26
* @return a list of characters associated with the font
27
*/
28
- @Query(value = "SELECT f FROM font_lore f WHERE f.font.id = :id",
29
- countQuery = "SELECT count(f) FROM font_lore f WHERE f.font.id = :id"
+ @Query(value = "SELECT f FROM font_string f WHERE f.font.id = :id",
+ countQuery = "SELECT count(f) FROM font_string f WHERE f.font.id = :id"
30
)
31
Page<FontStringEntity> findCharsByFontId(UUID id, Pageable pageable);
32
}
0 commit comments