Remove ! from error message
This commit is contained in:
parent
f51599f2a8
commit
a57dc85b60
|
@ -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 &&
|
||||
|
|
Loading…
Reference in New Issue