Skip to content

Commit

Permalink
Fixed: Runtime error in ImportDSV relative to DATA
Browse files Browse the repository at this point in the history
  • Loading branch information
dvdvideo1234 committed Nov 29, 2024
1 parent e37f23a commit cef3e07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/trackassembly/trackasmlib.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3791,7 +3791,7 @@ end
function ImportDSV(sTable, bComm, sPref, sDelim, bExp)
local sTable = tostring(sTable or ""); if(IsBlank(sTable)) then
LogInstance("Table mismatch "..GetReport(sTable)); return false end
local bFile, sLine, isEOF, F = fileExists(sTable), "", false
local bFile, sLine, isEOF, F = fileExists(sTable, "DATA"), "", false
local tHew, sHew = GetOpVar("PATTEM_EXDSVHED")
local sMoDB, makTab, defTab, cmdTab = GetOpVar("MODE_DATABASE")
if(bFile) then
Expand Down

0 comments on commit cef3e07

Please sign in to comment.