1
0
Fork 0
mirror of https://github.com/jiriks74/presence.nvim synced 2025-04-05 20:12:59 +02:00

Merge branch 'andweeb:main' into main

This commit is contained in:
Sean Ray 2022-08-06 11:48:11 -04:00 committed by GitHub
commit 57df75a16e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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,
} }
@ -365,9 +365,12 @@ function Presence:get_discord_socket_path()
elseif self.os.name == "macos" then elseif self.os.name == "macos" then
-- Use $TMPDIR for macOS -- Use $TMPDIR for macOS
local path = os.getenv("TMPDIR") local path = os.getenv("TMPDIR")
sock_path = path:match("/$")
and path..sock_name if path then
or path.."/"..sock_name sock_path = path:match("/$")
and path..sock_name
or path.."/"..sock_name
end
elseif self.os.name == "linux" then elseif self.os.name == "linux" then
-- Check various temp directory environment variables -- Check various temp directory environment variables
local env_vars = { local env_vars = {