diff options
author | Kevin <[email protected]> | 2024-10-17 03:17:50 -0300 |
---|---|---|
committer | Kevin <[email protected]> | 2024-10-17 03:17:50 -0300 |
commit | 61f7c53529722f6754ebca567149125710a864c6 (patch) | |
tree | ad0ca757a8a03b718470a71071eb215aa73a42e5 /lang/lua/astal/variable.lua | |
parent | 3ea9d58587754931989dae390ca119fb33aa634c (diff) |
core: fix typo
Diffstat (limited to 'lang/lua/astal/variable.lua')
-rw-r--r-- | lang/lua/astal/variable.lua | 4 |
1 files changed, 2 insertions, 2 deletions
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 |