ソースを参照

Added missing curly brackets in post-filter.js

pull/47/head^2
Mark Taiwan czaks 8年前
コミット
c2e3ff162f
1個のファイルの変更2行の追加1行の削除
  1. +2
    -1
      js/post-filter.js

+ 2
- 1
js/post-filter.js ファイルの表示

@@ -19,9 +19,10 @@ if (active_page === 'thread' || active_page === 'index' || active_page === 'cata
}

function initList(list, boardId, threadId) {
if (typeof list.postFilter[boardId] == 'undefined')
if (typeof list.postFilter[boardId] == 'undefined') {
list.postFilter[boardId] = {};
list.nextPurge[boardId] = {};
}
if (typeof list.postFilter[boardId][threadId] == 'undefined') {
list.postFilter[boardId][threadId] = [];
}


読み込み中…
キャンセル
保存