Skip to content

Commit

Permalink
lf_em_tearoff: oops accept absence of pwd
Browse files Browse the repository at this point in the history
  • Loading branch information
doegox committed Oct 22, 2023
1 parent 675c86e commit e20742d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/luascripts/lf_em_tearoff.lua
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ local function main(args)
sd = sd or 2000
ed = ed or 2100

if #password ~= 8 then
if password ~= '' and #password ~= 8 then
return oops('password must be 4 hex bytes')
end

Expand Down

0 comments on commit e20742d

Please sign in to comment.