This commit is contained in:
2019-01-15 21:42:41 +00:00
parent e94d7be977
commit 72c2b8f4a5
2 changed files with 2 additions and 2 deletions

View File

@@ -80,7 +80,7 @@ namespace AyaNova.Api.Controllers
//If concurrency token specified then check if ours is newer
if (concurrencyToken != null)
{
if (o.ConcurrencyToken != concurrencyToken)
if (o.ConcurrencyToken == concurrencyToken)
{
//returns a code 304 (NOT MODIFIED)
return StatusCode(304);