diff --git a/Notesnook.API/Controllers/MonographsController.cs b/Notesnook.API/Controllers/MonographsController.cs index 77a27a1..6abce0d 100644 --- a/Notesnook.API/Controllers/MonographsController.cs +++ b/Notesnook.API/Controllers/MonographsController.cs @@ -151,7 +151,7 @@ namespace Notesnook.API.Controllers if (userId == null) return Unauthorized(); var existingMonograph = await FindMonographAsync(userId, monograph); - if (existingMonograph != null || existingMonograph.Deleted) + if (existingMonograph == null || existingMonograph.Deleted) { return NotFound(); }