Skip to content

Commit e2e449f

Browse files
authored
🐛fix(regression): In the OS detection condition.
1 parent 559cf81 commit e2e449f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎lua/markmap/init.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ local M = {}
1010
M.setup = function(opts)
1111
-- Detect OS
1212
local is_windows = uv.os_uname().sysname == "Windows_NT"
13-
local is_android = vim.fn.isdirectory("/system" == 1)
13+
local is_android = vim.fn.isdirectory("/system") == 1
1414

1515
-- Setup options
1616
local html_output = opts.html_output

0 commit comments

Comments
 (0)