This commit is contained in:
John Bintz 2012-05-03 07:27:11 -04:00
parent 8127c8e4d8
commit 0e493c1d53
1 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ SYNC_CHECK_TIME = 0.1
@sync_now = false
def <<(dirs)
@queue.update { |q| q += dirs ; q }
@queue.update { |q| q += [ dirs ].flatten ; q }
end
public :<<
@ -29,7 +29,6 @@ def check
begin
if @queue.value.length > 0 || remote_sync_check == 0 || @sync_now
dir = nil
@queue.update { |q| ; dir = q.shift ; q }
@status.text = "Syncing..."
@ -50,6 +49,7 @@ def check
remote_sync_check = SYNC_CHECK_COUNT
@sync_now = false
@queue.update { [] }
end
rescue => e
puts e.message