Added failsafes to interactions against 'deleted' processes

This commit is contained in:
Nathan Schneider
2022-01-06 09:58:15 -07:00
parent bdf4d86593
commit 65bb1aa532
2 changed files with 13 additions and 9 deletions

View File

@ -175,13 +175,15 @@ function modpol.interactions.org_dashboard(user, org_string)
local processes = {}
print("All processes: (* indicates pending)")
for i,v in ipairs(org.processes) do
local active = ''
if org.pending[user] then
if org.pending[user][v.id] then
active = '*'
if v ~= "deleted" then
local active = ''
if org.pending[user] then
if org.pending[user][v.id] then
active = '*'
end
end
print("["..v.id.."] "..v.slug..active)
end
print("["..v.id.."] "..v.slug..active)
end
print()
print("Interact with which one (use [id] number)?")