bugfix unhandled ex in case of duplicateexception (#862)
Co-authored-by: Florian Mader <florian.mader@outlook.com>
This commit is contained in:
@@ -41,7 +41,8 @@ public class ExceptionMiddleware
|
|||||||
Message = duplicationException.Message
|
Message = duplicationException.Message
|
||||||
}.ToString());
|
}.ToString());
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
context.Response.StatusCode = (int)HttpStatusCode.InternalServerError;
|
context.Response.StatusCode = (int)HttpStatusCode.InternalServerError;
|
||||||
await context.Response.WriteAsync(new ErrorDetails()
|
await context.Response.WriteAsync(new ErrorDetails()
|
||||||
{
|
{
|
||||||
@@ -49,4 +50,5 @@ public class ExceptionMiddleware
|
|||||||
Message = exception.Message
|
Message = exception.Message
|
||||||
}.ToString());
|
}.ToString());
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user