Kaynağa Gözat

fix isDeleted logic

Yuki Takei 7 yıl önce
ebeveyn
işleme
6e8fa641a4
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. 1 1
      src/server/models/page.js

+ 1 - 1
src/server/models/page.js

@@ -117,7 +117,7 @@ module.exports = function(crowi) {
   }
   }
 
 
   pageSchema.methods.isDeleted = function() {
   pageSchema.methods.isDeleted = function() {
-    return this.status === STATUS_DELETED;
+    return (this.status === STATUS_DELETED) || checkIfTrashed(this.path);
   };
   };
 
 
   pageSchema.methods.isPublic = function() {
   pageSchema.methods.isPublic = function() {