fix: 依存関係のアップデートで壊れた部分を修正

This commit is contained in:
usbharu 2024-04-03 15:09:20 +09:00
parent e3ee43f011
commit ecb73a0da6
2 changed files with 3 additions and 7 deletions

View File

@ -96,10 +96,6 @@ tasks.withType<Test> {
} }
} }
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompilationTask<*>>().configureEach {
compilerOptions.languageVersion.set(org.jetbrains.kotlin.gradle.dsl.KotlinVersion.KOTLIN_1_9)
compilerOptions.apiVersion.set(org.jetbrains.kotlin.gradle.dsl.KotlinVersion.KOTLIN_1_9)
}
tasks.withType<KotlinCompile> { tasks.withType<KotlinCompile> {
kotlinOptions { kotlinOptions {

View File

@ -116,11 +116,11 @@ class NotificationApiServiceImpl(
reblog -> Notification.Type.reblog reblog -> Notification.Type.reblog
follow -> Notification.Type.follow follow -> Notification.Type.follow
follow_request -> Notification.Type.follow follow_request -> Notification.Type.follow
favourite -> Notification.Type.followRequest favourite -> Notification.Type.follow_request
poll -> Notification.Type.poll poll -> Notification.Type.poll
update -> Notification.Type.update update -> Notification.Type.update
admin_sign_up -> Notification.Type.adminPeriodSignUp admin_sign_up -> Notification.Type.adminPeriodSign_up
admin_report -> Notification.Type.adminPeriodReport admin_report -> Notification.Type.adminPeriodReport
severed_relationships -> Notification.Type.severedRelationships severed_relationships -> Notification.Type.severed_relationships
} }
} }