Update ScheduleDispatcher.lua

Fix for Source (=Infor.source) nil problem.
This commit is contained in:
Frank 2019-09-13 18:57:27 +02:00
parent e23ebd622a
commit 2d4a4fb2ca

View File

@ -127,8 +127,8 @@ function SCHEDULEDISPATCHER:AddSchedule( Scheduler, ScheduleFunction, ScheduleAr
local CallID = Params.CallID
local Info = Params.Info
local Source = Info.source
local Line = Info.currentline
local Source = Info.source or "unknown source"
local Line = Info.currentline or -1
local Name = Info.name or "?"
local ErrorHandler = function( errmsg )