Skip to content

Commit

Permalink
Merge pull request #397 from joritochip/patch-2
Browse files Browse the repository at this point in the history
Fix Trello syncing issue
  • Loading branch information
Sceleratis authored Jul 7, 2021
2 parents d90c7d9 + 7ed0c4d commit f82dcbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MainModule/Server/Core/HTTP.lua
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ return function(Vargs)
local oldListObj = trello.getListObj;
trello.getListObj = function(...)
local vargs = {...}
return select(3, service.Queue("TrelloCall", function()
return select(2, service.Queue("TrelloCall", function()
wait(10/60)
return oldListObj(table.unpack(vargs))
end, 30, true))
Expand Down

0 comments on commit f82dcbd

Please sign in to comment.