1
0
Fork 0
mirror of synced 2024-08-18 19:41:30 +12:00

Remove ! from error message

This commit is contained in:
Mel O'Hagan 2022-11-01 12:37:42 +00:00
parent f51599f2a8
commit a57dc85b60

View file

@ -38,7 +38,7 @@ export async function patch(ctx: any): Promise<any> {
}
)
if (!row) {
ctx.throw(404, "Row not found!")
ctx.throw(404, "Row not found")
}
ctx.status = 200
ctx.eventEmitter &&