mirror of
https://github.com/jiriks74/presence.nvim
synced 2025-04-05 12:03:00 +02:00
Fix Microsoft kernel detection for WSL 2 (#64)
This commit is contained in:
parent
ebdf23b9b1
commit
615d4cb8b0
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ function Presence:setup(options)
|
||||||
local os_name = self.get_os_name(uname)
|
local os_name = self.get_os_name(uname)
|
||||||
self.os = {
|
self.os = {
|
||||||
name = os_name,
|
name = os_name,
|
||||||
is_wsl = uname.release:find("Microsoft") ~= nil,
|
is_wsl = uname.release:lower():find("microsoft") ~= nil,
|
||||||
path_separator = separator,
|
path_separator = separator,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue