소스 검색

Fix most active filter

sbkwgh 8 년 전
부모
커밋
b4bdc0234c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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) {