Module:ItemSources: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
mNo edit summary |
||
Line 19: | Line 19: | ||
local status, | local status, message = pcall(function() | ||
storeList = storeLocationsList.main(frame) | storeList = storeLocationsList.main(frame) | ||
end) | end) | ||
Line 30: | Line 30: | ||
mw.log("storeList", inspect(storeList)) | mw.log("storeList", inspect(storeList)) | ||
else | else | ||
if string.find(message, 'The item .* is not sold in any shop,') then | |||
mw.log("not sold") | |||
end | |||
mw.log("error") | mw.log("error") | ||
mw.log("error data", | mw.log("error data", message) | ||
end | end | ||
end | end |
Revision as of 12:24, 4 April 2022
Documentation for this module may be created at Module:ItemSources/doc
-------------------------- -- Module for [[Template:ItemSources]] -- -- ------------------------ local p = {} local storeLocationsList = require('Module:Store locations list') local onmain = require('Module:Mainonly').on_main local commas = require('Module:Addcommas')._add local inspect = require('Module:Inspect') VariablesLua = mw.ext.VariablesLua function p.main(frame) local args = frame:getParent().args mw.log("args", inspect(data)) local storeList local status, message = pcall(function() storeList = storeLocationsList.main(frame) end) mw.log("status", status) if status then mw.log("no error") mw.log("storeList", inspect(storeList)) else if string.find(message, 'The item .* is not sold in any shop,') then mw.log("not sold") end mw.log("error") mw.log("error data", message) end end return p