fix: proper handling of actors.qualify response

This commit is contained in:
Julian Lam
2025-03-26 12:00:55 -04:00
parent 2cb6d10d9e
commit f2e0ba2165

View File

@@ -110,7 +110,7 @@ Actors.assert = async (ids, options = {}) => {
*/
ids = await Actors.qualify(ids, options);
if (!ids) {
if (!ids || !ids.length) {
return ids;
}