Merge pull request #309 from Morb0/fix/call-next

[Fix] Call next after handler
This commit is contained in:
Alexander Bukhalo 2021-03-06 15:24:29 +03:00 committed by GitHub
commit c7fe358e3b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -147,6 +147,7 @@ export class ListenersExplorerService
await ctx.reply(String(result)); await ctx.reply(String(result));
} }
// TODO-Possible-Feature: Add more supported return types // TODO-Possible-Feature: Add more supported return types
return next();
}, },
); );
} }