Fix query typo

This commit is contained in:
Nassim Jahnke 2022-06-21 20:02:12 +02:00
parent f10552bb75
commit ea9149baac
No known key found for this signature in database
GPG Key ID: 6BE3B555EBC5982B

View File

@ -56,7 +56,7 @@ public interface HangarVersionsDAO {
" AND" +
" <endif>" +
" pv.id = :versionId" +
" ORDERED BY pv.created_at DESC"
" ORDER BY pv.created_at DESC"
)
HangarVersion getVersion(long versionId, @Define boolean canSeeHidden, @Define Long userId);