diff options
author | nea <nea@nea.moe> | 2023-07-30 14:40:53 +0200 |
---|---|---|
committer | nea <nea@nea.moe> | 2023-07-30 14:40:53 +0200 |
commit | 2f700453a4f688898c2c0040b3e0a628e89fa335 (patch) | |
tree | 8758fc631a6b898ecd9e0d99331244157d6f4fa4 /src/main/kotlin/moe/nea/firmament/apis | |
parent | d4b254ea11798a8ba4b891d31c433496b7c53bb3 (diff) | |
download | Firmament-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.kt | 2 |
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 |