03-02-2015, 11:29 PM
I was actually having the same issue:
![[Image: 69709c6169.PNG]](http://puu.sh/gjV8x/69709c6169.PNG)
Appropriately, I looked at the debug console/Lua file and it's not finding any files.
taskList is always empty.
Appropriately, I looked at the debug console/Lua file and it's not finding any files.
Code:
local taskList = dirlist(TaskManager.taskPath,".*info")
if ( TableSize(taskList) > 0) then
local i,task = next ( taskList)
while i and task do
task = string.gsub(task, ".info", "")
tasks = tasks..","..task
i,task = next ( taskList,i)
end
else
dbg("No task found ")
end
taskList is always empty.