Skip to content

Commit

Permalink
fix for auto-save not starting
Browse files Browse the repository at this point in the history
  • Loading branch information
SaintRyoh committed Oct 2, 2023
1 parent 748e3fd commit 111aaf5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rabbithole/services/workspaceManagerService/init.lua
Expand Up @@ -61,12 +61,12 @@ function WorkspaceManagerService.new(
end

function WorkspaceManagerService:setupAutoSave(signals)
local ready = false
local ready = true
local timer = gears.timer {
timeout = self.settings.autosave_wait_time,
autostart = true,
callback = function()
self.settings.enable_autosave = true
ready = true
end
}
__.forEach(signals, function(signal)
Expand Down

0 comments on commit 111aaf5

Please sign in to comment.