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

fix(init.lua): Change : to . so argument self is not created

This commit is contained in:
Jiří Štefka 2024-04-10 14:28:48 +02:00
parent 6f542a1100
commit 923c5765fe

View file

@ -720,7 +720,7 @@ function Presence:check_blacklist(buffer, parent_dirpath, project_dirpath)
end
-- check against git repo blacklist
local git_repo = Presence:get_git_repo_url(parent_dirpath)
local git_repo = Presence.get_git_repo_url(parent_dirpath)
if git_repo then
self.log:debug(string.format("Checking git repo blacklist for %s", git_repo))
else
@ -744,7 +744,7 @@ function Presence:check_blacklist(buffer, parent_dirpath, project_dirpath)
return false
end
function Presence:get_git_repo_url(parent_dirpath)
function Presence.get_git_repo_url(parent_dirpath)
local repo_url
if parent_dirpath then
@ -773,7 +773,7 @@ function Presence:get_buttons(buffer, parent_dirpath)
end
-- Retrieve the git repository URL
local repo_url = Presence:get_git_repo_url(parent_dirpath)
local repo_url = Presence.get_git_repo_url(parent_dirpath)
-- User configured a function to dynamically create buttons table
if type(self.options.buttons) == "function" then