From 0b0a0f1bb2678c49704aadaa88cd2c1eebc304b1 Mon Sep 17 00:00:00 2001 From: primeapple Date: Thu, 22 Aug 2024 06:40:25 +0200 Subject: [PATCH] Call function correctly --- lua/auto-save/config.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/auto-save/config.lua b/lua/auto-save/config.lua index 1ce2353..1f3c03e 100644 --- a/lua/auto-save/config.lua +++ b/lua/auto-save/config.lua @@ -49,7 +49,7 @@ end function Config:set_options(custom_opts) custom_opts = custom_opts or {} - custom_opts = self.handle_deprecations(custom_opts) + custom_opts = self:handle_deprecations(custom_opts) self.opts = vim.tbl_deep_extend("keep", custom_opts, self.opts) end