Fix Tracking DisplayScore (#1461)

This commit is contained in:
Mitchell Syer
2025-06-22 15:53:25 -04:00
committed by GitHub
parent abea85d831
commit b54dc6f967
2 changed files with 2 additions and 2 deletions

View File

@@ -127,7 +127,7 @@ class DisplayScoreForTrackRecordDataLoader : KotlinDataLoader<Int, String> {
}
class DisplayScoreForTrackSearchDataLoader : KotlinDataLoader<Int, String> {
override val dataLoaderName = "DisplayScoreForTrackRecordDataLoader"
override val dataLoaderName = "DisplayScoreForTrackSearchDataLoader"
override fun getDataLoader(graphQLContext: GraphQLContext): DataLoader<Int, String> =
DataLoaderFactory.newDataLoader<Int, String> { ids ->

View File

@@ -19,7 +19,7 @@ class TrackSearch : Track {
override var total_chapters: Int = 0
override var score: Double = -1.0
override var score: Double = 0.0
override var status: Int = 0