Skip to content

Commit

Permalink
add missing type name
Browse files Browse the repository at this point in the history
  • Loading branch information
DRSchlaubi committed Jul 18, 2023
1 parent cad306b commit ead7fb0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion music/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
subprojects {
version = "3.0.0-SNAPSHOT"
version = "3.0.1-SNAPSHOT"
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ class PlaylistAddArguments : PlaylistArguments(), QueueOptions {
override val searchProvider: QueueOptions.SearchProvider? by optionalEnumChoice<QueueOptions.SearchProvider> {
name = "search-provider"
description = "The search provider to use"
typeName = "SearchProvider"
}
val search by defaultingBoolean {
name = "search"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ abstract class QueueArguments : Arguments(), QueueOptions {
override val searchProvider by optionalEnumChoice<QueueOptions.SearchProvider> {
name = "search-provider"
description = "Which searchprovider to use"
typeName = "SearchProvider"
}
}

Expand Down

0 comments on commit ead7fb0

Please sign in to comment.