logging
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 29s Details

This commit is contained in:
Ladd Hoffman 2024-05-02 20:38:37 -05:00
parent a2aa5c8134
commit 7823b97c60
1 changed files with 4 additions and 1 deletions

View File

@ -12,7 +12,10 @@ const setTargetRoomId = async (roomId) => {
};
const processOutboundQueue = async ({ type, ...args }) => {
if (!targetRoomId) return;
if (!targetRoomId) {
console.log('targetRoomId not set, cannot deliver message');
return;
}
switch (type) {
case 'MatrixEvent': {
const { eventType, content, onSend } = args;