logging
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 29s
Details
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 29s
Details
This commit is contained in:
parent
a2aa5c8134
commit
7823b97c60
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue