Skip to content

Commit

Permalink
Fix invalid sounds
Browse files Browse the repository at this point in the history
  • Loading branch information
DRSchlaubi committed Jun 22, 2023
1 parent dc3e236 commit e7e5665
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ fun Route.sounds() {

get<Sounds.ListSounds> { (onlyMine, queryString, useUnicode) ->
call.respond(
SoundBoardDatabase.sounds.search(queryString, onlyMine, call.userId).toList().convertForNonJvmPlatforms(useUnicode)
SoundBoardDatabase.sounds.search(queryString, onlyMine, call.userId).toList().convertForNonJvmPlatforms(!useUnicode)
)
}

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {

allprojects {
group = "dev.schlaubi.tonbrett"
version = "1.10.1"
version = "1.10.2"

repositories {
mavenCentral()
Expand Down

0 comments on commit e7e5665

Please sign in to comment.