Skip to content

Commit

Permalink
chore(pr): auto-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
linrongbin16 authored and github-actions[bot] committed Feb 5, 2024
1 parent 76dd2a4 commit 40b6404
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lua/fzfx/commons/tables.lua
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ end
M.tbl_get = function(t, ...)
local e = t --[[@as table]]
for _, k in ipairs({ ... }) do
if M.tbl_not_empty(e) and e[k] ~= nil then
if type(e) == "table" and e[k] ~= nil then
e = e[k]
else
return nil
Expand Down
2 changes: 1 addition & 1 deletion lua/fzfx/commons/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9.0.0
9.0.1

0 comments on commit 40b6404

Please sign in to comment.