From 61f7c53529722f6754ebca567149125710a864c6 Mon Sep 17 00:00:00 2001 From: Kevin Date: Thu, 17 Oct 2024 03:17:50 -0300 Subject: core: fix typo --- lang/lua/astal/variable.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lang/lua') diff --git a/lang/lua/astal/variable.lua b/lang/lua/astal/variable.lua index ec563fb..2305a71 100644 --- a/lang/lua/astal/variable.lua +++ b/lang/lua/astal/variable.lua @@ -74,7 +74,7 @@ function Variable:is_watching() end function Variable:start_poll() - if not self:is_polling() then + if self:is_polling() then return end @@ -96,7 +96,7 @@ function Variable:start_poll() end function Variable:start_watch() - if not self:is_watching() then + if self:is_watching() then return end -- cgit v1.2.3