Browse Source

Fix most active filter

sbkwgh 8 năm trước cách đây
mục cha
commit
b4bdc0234c
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/components/routes/Index.vue

+ 1 - 1
src/components/routes/Index.vue

@@ -115,7 +115,7 @@
 
 						return aDate - bDate;
 					} else if(filter === 'MOST_ACTIVE') {
-						return b.postsCount-1 - a.postsCount-1;
+						return b.postsCount - a.postsCount;
 					}
 				}).filter(thread => {
 					if(filter === 'NO_REPLIES' && thread.postsCount-1) {