We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d7ebdd commit 696ee34Copy full SHA for 696ee34
apps/webapp/app/presenters/v3/TestTaskPresenter.server.ts
@@ -382,6 +382,9 @@ export class TestTaskPresenter {
382
383
async function getScheduleTaskRunPayload(payload: string, payloadType: string) {
384
const packet = await parsePacket({ data: payload, dataType: payloadType });
385
+ if (!packet) {
386
+ return { success: false as const };
387
+ }
388
if (!packet.timezone) {
389
packet.timezone = "UTC";
390
}
0 commit comments