Skip to content

Commit

Permalink
Fix search endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
DRSchlaubi authored Dec 22, 2023
1 parent 7d938bb commit d43efcc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {
}

group = "dev.schlaubi.lavakord"
version = "6.1.2"
version = "6.1.3"

allprojects {
repositories {
Expand Down
2 changes: 1 addition & 1 deletion plugins/lyrics/src/commonMain/kotlin/rest/Route.kt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import io.ktor.resources.*
@Resource("lyrics")
internal data class LyricsRoute(val parent: V4Api = V4Api()) {

@Resource("lyrics/search/{query}")
@Resource("search/{query}")
data class Search(val query: String, val parent: LyricsRoute = LyricsRoute())

@Resource("{videoId}")
Expand Down

0 comments on commit d43efcc

Please sign in to comment.