mirror of https://github.com/iv-org/invidious.git
Optimize some redundant stuff
This commit is contained in:
parent
7755ed4ac8
commit
73d2ed6f77
|
@ -64,8 +64,8 @@ def parse_description(desc : JSON::Any?) : String?
|
||||||
length = command["length"].as_i
|
length = command["length"].as_i
|
||||||
|
|
||||||
if start_index > 0 && start_index - index > 0
|
if start_index > 0 && start_index - index > 0
|
||||||
str << content[index..(start_index - 1)]
|
str << content[index...start_index]
|
||||||
index += start_index - index
|
index = start_index
|
||||||
end
|
end
|
||||||
|
|
||||||
str << parse_command(command, content[start_index, length])
|
str << parse_command(command, content[start_index, length])
|
||||||
|
|
Loading…
Reference in New Issue