aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/firmament/apis
diff options
context:
space:
mode:
authornea <nea@nea.moe>2023-07-30 14:40:53 +0200
committernea <nea@nea.moe>2023-07-30 14:40:53 +0200
commit2f700453a4f688898c2c0040b3e0a628e89fa335 (patch)
tree8758fc631a6b898ecd9e0d99331244157d6f4fa4 /src/main/kotlin/moe/nea/firmament/apis
parentd4b254ea11798a8ba4b891d31c433496b7c53bb3 (diff)
downloadFirmament-2f700453a4f688898c2c0040b3e0a628e89fa335.tar.gz
Firmament-2f700453a4f688898c2c0040b3e0a628e89fa335.tar.bz2
Firmament-2f700453a4f688898c2c0040b3e0a628e89fa335.zip
Fix skill data breaking collections
Diffstat (limited to 'src/main/kotlin/moe/nea/firmament/apis')
-rw-r--r--src/main/kotlin/moe/nea/firmament/apis/Profiles.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/kotlin/moe/nea/firmament/apis/Profiles.kt b/src/main/kotlin/moe/nea/firmament/apis/Profiles.kt
index 553fd9f..0f014a5 100644
--- a/src/main/kotlin/moe/nea/firmament/apis/Profiles.kt
+++ b/src/main/kotlin/moe/nea/firmament/apis/Profiles.kt
@@ -27,7 +27,7 @@ data class CollectionSkillData(
@Serializable
data class CollectionResponse(
val success: Boolean,
- val collections: Map<Skill, CollectionSkillData>
+ val collections: Map<String, CollectionSkillData>
)
@Serializable