Adding error screen for lua functions running in status line

This commit is contained in:
Neko Box Coder 2025-03-12 23:37:48 +00:00
parent fa317456e9
commit 02ef3585cd
No known key found for this signature in database
GPG Key ID: E33FCF170345E0F5

View File

@ -83,6 +83,8 @@ func SetStatusInfoFnLua(fn string) {
} else {
return string(v)
}
} else {
screen.TermMessage(plFn, "failed with error\n"+err.Error())
}
return ""
}