Fix param conflict

This commit is contained in:
Omar Roth 2018-03-04 11:39:56 -06:00
parent df228c82de
commit 971b471d72
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ yt_wait = 1.0
Kemal.config.extra_options do |parser|
parser.banner = "Usage: invidious [arguments]"
parser.on("-s SIZE", "--youtube-pool=SIZE", "Number of clients in youtube pool (default: #{yt_pool_size})") do |number|
parser.on("-z SIZE", "--youtube-pool=SIZE", "Number of clients in youtube pool (default: #{yt_pool_size})") do |number|
begin
yt_pool_size = number.to_i
rescue ex